Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer << 3 // * DISCLAIMER * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th << 5 // * The following disclaimer summarizes all the specific disclaimers * 6 // * the Geant4 Collaboration. It is provided << 6 // * of contributors to this software. The specific disclaimers,which * 7 // * conditions of the Geant4 Software License << 7 // * govern, are listed with their locations in: * 8 // * LICENSE and available at http://cern.ch/ << 8 // * http://cern.ch/geant4/license * 9 // * include a list of copyright holders. << 10 // * 9 // * * 11 // * Neither the authors of this software syst 10 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 11 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 12 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 13 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file << 14 // * use. * 16 // * for the full disclaimer and the limitatio << 17 // * 15 // * * 18 // * This code implementation is the result << 16 // * This code implementation is the intellectual property of the * 19 // * technical work of the GEANT4 collaboratio << 17 // * GEANT4 collaboration. * 20 // * By using, copying, modifying or distri << 18 // * By copying, distributing or modifying the Program (or any work * 21 // * any work based on the software) you ag << 19 // * based on the Program) you indicate your acceptance of this * 22 // * use in resulting scientific publicati << 20 // * statement, and all its terms. * 23 // * acceptance of all terms of the Geant4 Sof << 24 // ******************************************* 21 // ******************************************************************** 25 // 22 // 26 /// \file field/field02/include/F02DetectorMes << 27 /// \brief Definition of the F02DetectorMessen << 28 // 23 // >> 24 // $Id: F02DetectorMessenger.hh,v 1.3 2001/10/25 09:30:13 grichine Exp $ >> 25 // GEANT4 tag $Name: geant4-08-00 $ 29 // 26 // 30 // << 27 // 31 // << 28 32 //....oooOO0OOooo........oooOO0OOooo........oo << 29 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 33 //....oooOO0OOooo........oooOO0OOooo........oo << 30 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 34 31 35 #ifndef F02DetectorMessenger_h 32 #ifndef F02DetectorMessenger_h 36 #define F02DetectorMessenger_h 1 33 #define F02DetectorMessenger_h 1 37 34 >> 35 #include "globals.hh" 38 #include "G4UImessenger.hh" 36 #include "G4UImessenger.hh" 39 37 40 class F02DetectorConstruction; 38 class F02DetectorConstruction; 41 << 42 class G4UIdirectory; 39 class G4UIdirectory; 43 class G4UIcmdWithAString; 40 class G4UIcmdWithAString; 44 class G4UIcmdWithAnInteger; 41 class G4UIcmdWithAnInteger; 45 class G4UIcmdWithADoubleAndUnit; 42 class G4UIcmdWithADoubleAndUnit; 46 class G4UIcmdWith3VectorAndUnit; << 47 class G4UIcmdWithoutParameter; 43 class G4UIcmdWithoutParameter; 48 44 49 //....oooOO0OOooo........oooOO0OOooo........oo << 45 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 50 46 51 class F02DetectorMessenger : public G4UImessen << 47 class F02DetectorMessenger: public G4UImessenger 52 { 48 { 53 public: 49 public: 54 F02DetectorMessenger(F02DetectorConstructi << 50 F02DetectorMessenger(F02DetectorConstruction* ); 55 ~F02DetectorMessenger() override; << 51 ~F02DetectorMessenger(); 56 << 52 57 void SetNewValue(G4UIcommand*, G4String) o << 53 void SetNewValue(G4UIcommand*, G4String); 58 << 54 59 private: 55 private: 60 F02DetectorConstruction* fDetector = nullp << 56 F02DetectorConstruction* F02Detector; >> 57 >> 58 G4UIdirectory* F02detDir; 61 59 62 G4UIdirectory* fDetDir = nullptr; << 60 G4UIcmdWithAString* AbsMaterCmd; 63 G4UIdirectory* fFieldDir = nullptr; << 61 G4UIcmdWithADoubleAndUnit* AbsThickCmd; >> 62 G4UIcmdWithADoubleAndUnit* AbsRadCmd; 64 63 65 G4UIcmdWithAString* fAbsMaterCmd = nullptr << 64 G4UIcmdWithADoubleAndUnit* AbsZposCmd; 66 G4UIcmdWithADoubleAndUnit* fAbsThickCmd = << 67 G4UIcmdWithADoubleAndUnit* fAbsRadCmd = nu << 68 65 69 G4UIcmdWithADoubleAndUnit* fAbsZposCmd = n << 66 G4UIcmdWithAString* WorldMaterCmd; >> 67 G4UIcmdWithADoubleAndUnit* WorldZCmd; >> 68 G4UIcmdWithADoubleAndUnit* WorldRCmd; 70 69 71 G4UIcmdWithAString* fWorldMaterCmd = nullp << 70 G4UIcmdWithoutParameter* UpdateCmd; 72 G4UIcmdWithADoubleAndUnit* fWorldZCmd = nu << 73 G4UIcmdWithADoubleAndUnit* fWorldRCmd = nu << 74 71 75 // moved from FieldSetup (depends on the u << 76 G4UIcmdWith3VectorAndUnit* fElFieldCmd = n << 77 }; 72 }; 78 73 79 #endif 74 #endif >> 75 80 76