Geant4 Cross Reference |
1 // 1 2 // ******************************************* 3 // * License and Disclaimer 4 // * 5 // * The Geant4 software is copyright of th 6 // * the Geant4 Collaboration. It is provided 7 // * conditions of the Geant4 Software License 8 // * LICENSE and available at http://cern.ch/ 9 // * include a list of copyright holders. 10 // * 11 // * Neither the authors of this software syst 12 // * institutes,nor the agencies providing fin 13 // * work make any representation or warran 14 // * regarding this software system or assum 15 // * use. Please see the license in the file 16 // * for the full disclaimer and the limitatio 17 // * 18 // * This code implementation is the result 19 // * technical work of the GEANT4 collaboratio 20 // * By using, copying, modifying or distri 21 // * any work based on the software) you ag 22 // * use in resulting scientific publicati 23 // * acceptance of all terms of the Geant4 Sof 24 // ******************************************* 25 // 26 /// \file DetectorMessenger.cc 27 /// \brief Implementation of the DetectorMesse 28 // 29 // 30 //....oooOO0OOooo........oooOO0OOooo........oo 31 //....oooOO0OOooo........oooOO0OOooo........oo 32 33 #include "DetectorMessenger.hh" 34 35 #include "DetectorConstruction.hh" 36 37 #include "G4UIcmdWithADoubleAndUnit.hh" 38 #include "G4UIcmdWithAString.hh" 39 #include "G4UIdirectory.hh" 40 41 //....oooOO0OOooo........oooOO0OOooo........oo 42 43 DetectorMessenger::DetectorMessenger(DetectorC 44 { 45 fRdecayDir = new G4UIdirectory("/rdecay02/") 46 fRdecayDir->SetGuidance("commands specific t 47 48 G4bool broadcast = false; 49 fDetDir = new G4UIdirectory("/rdecay02/det/" 50 fDetDir->SetGuidance("detector construction 51 52 fTargMatCmd = new G4UIcmdWithAString("/rdeca 53 fTargMatCmd->SetGuidance("Select material of 54 fTargMatCmd->SetParameterName("choice", fals 55 fTargMatCmd->AvailableForStates(G4State_PreI 56 57 fTargRadiusCmd = new G4UIcmdWithADoubleAndUn 58 fTargRadiusCmd->SetGuidance("Set the Target 59 fTargRadiusCmd->SetUnitCategory("Length"); 60 fTargRadiusCmd->SetParameterName("choice", f 61 fTargRadiusCmd->AvailableForStates(G4State_P 62 63 fTargLengthCmd = new G4UIcmdWithADoubleAndUn 64 fTargLengthCmd->SetGuidance("Set the Target 65 fTargLengthCmd->SetUnitCategory("Length"); 66 fTargLengthCmd->SetParameterName("choice", f 67 fTargLengthCmd->AvailableForStates(G4State_P 68 69 fDetectMatCmd = new G4UIcmdWithAString("/rde 70 fDetectMatCmd->SetGuidance("Select Material 71 fDetectMatCmd->SetParameterName("choice", fa 72 fDetectMatCmd->AvailableForStates(G4State_Pr 73 74 fDetectThicknessCmd = new G4UIcmdWithADouble 75 fDetectThicknessCmd->SetGuidance("Set the De 76 fDetectThicknessCmd->SetUnitCategory("Length 77 fDetectThicknessCmd->SetParameterName("choic 78 fDetectThicknessCmd->AvailableForStates(G4St 79 80 fDetectLengthCmd = new G4UIcmdWithADoubleAnd 81 fDetectLengthCmd->SetGuidance("Set the Detec 82 fDetectLengthCmd->SetUnitCategory("Length"); 83 fDetectLengthCmd->SetParameterName("choice", 84 fDetectLengthCmd->AvailableForStates(G4State 85 } 86 87 //....oooOO0OOooo........oooOO0OOooo........oo 88 89 DetectorMessenger::~DetectorMessenger() 90 { 91 delete fTargMatCmd; 92 delete fDetectMatCmd; 93 delete fTargRadiusCmd; 94 delete fDetectThicknessCmd; 95 delete fTargLengthCmd; 96 delete fDetectLengthCmd; 97 delete fDetDir; 98 delete fRdecayDir; 99 } 100 101 //....oooOO0OOooo........oooOO0OOooo........oo 102 103 void DetectorMessenger::SetNewValue(G4UIcomman 104 { 105 if (command == fTargMatCmd) { 106 fDetector->SetTargetMaterial(newValue); 107 } 108 109 if (command == fTargLengthCmd) { 110 fDetector->SetTargetLength(fTargLengthCmd- 111 } 112 113 if (command == fTargRadiusCmd) { 114 fDetector->SetTargetRadius(fTargLengthCmd- 115 } 116 117 if (command == fDetectMatCmd) { 118 fDetector->SetDetectorMaterial(newValue); 119 } 120 121 if (command == fDetectLengthCmd) { 122 fDetector->SetDetectorLength(fDetectLength 123 } 124 125 if (command == fDetectThicknessCmd) { 126 fDetector->SetDetectorThickness(fDetectThi 127 } 128 } 129 130 //....oooOO0OOooo........oooOO0OOooo........oo 131