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 electromagnetic/TestEm3/src/Detector 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 "G4UIcmdWithAnInteger.hh" 39 #include "G4UIcmdWithoutParameter.hh" 40 #include "G4UIcommand.hh" 41 #include "G4UIdirectory.hh" 42 #include "G4UIparameter.hh" 43 44 #include <sstream> 45 46 //....oooOO0OOooo........oooOO0OOooo........oo 47 48 DetectorMessenger::DetectorMessenger(DetectorC 49 { 50 fTestemDir = new G4UIdirectory("/testem/"); 51 fTestemDir->SetGuidance("UI commands specifi 52 53 fDetDir = new G4UIdirectory("/testem/det/"); 54 fDetDir->SetGuidance("detector construction 55 56 fSizeYZCmd = new G4UIcmdWithADoubleAndUnit(" 57 fSizeYZCmd->SetGuidance("Set tranverse size 58 fSizeYZCmd->SetParameterName("Size", false); 59 fSizeYZCmd->SetRange("Size>0."); 60 fSizeYZCmd->SetUnitCategory("Length"); 61 fSizeYZCmd->AvailableForStates(G4State_PreIn 62 fSizeYZCmd->SetToBeBroadcasted(false); 63 64 fNbLayersCmd = new G4UIcmdWithAnInteger("/te 65 fNbLayersCmd->SetGuidance("Set number of lay 66 fNbLayersCmd->SetParameterName("NbLayers", f 67 fNbLayersCmd->SetRange("NbLayers>0"); 68 fNbLayersCmd->AvailableForStates(G4State_Pre 69 fNbLayersCmd->SetToBeBroadcasted(false); 70 71 fNbAbsorCmd = new G4UIcmdWithAnInteger("/tes 72 fNbAbsorCmd->SetGuidance("Set number of Abso 73 fNbAbsorCmd->SetParameterName("NbAbsor", fal 74 fNbAbsorCmd->SetRange("NbAbsor>0"); 75 fNbAbsorCmd->AvailableForStates(G4State_PreI 76 fNbAbsorCmd->SetToBeBroadcasted(false); 77 78 fAbsorCmd = new G4UIcommand("/testem/det/set 79 fAbsorCmd->SetGuidance("Set the absor nb, th 80 fAbsorCmd->SetGuidance(" absor number : fro 81 fAbsorCmd->SetGuidance(" material name"); 82 fAbsorCmd->SetGuidance(" thickness (with un 83 // 84 G4UIparameter* AbsNbPrm = new G4UIparameter( 85 AbsNbPrm->SetGuidance("absor number : from 1 86 AbsNbPrm->SetParameterRange("AbsorNb>0"); 87 fAbsorCmd->SetParameter(AbsNbPrm); 88 // 89 G4UIparameter* MatPrm = new G4UIparameter("m 90 MatPrm->SetGuidance("material name"); 91 fAbsorCmd->SetParameter(MatPrm); 92 // 93 G4UIparameter* ThickPrm = new G4UIparameter( 94 ThickPrm->SetGuidance("thickness of absorber 95 ThickPrm->SetParameterRange("thickness>0."); 96 fAbsorCmd->SetParameter(ThickPrm); 97 // 98 G4UIparameter* unitPrm = new G4UIparameter(" 99 unitPrm->SetGuidance("unit of thickness"); 100 G4String unitList = G4UIcommand::UnitsList(G 101 unitPrm->SetParameterCandidates(unitList); 102 fAbsorCmd->SetParameter(unitPrm); 103 // 104 fAbsorCmd->AvailableForStates(G4State_PreIni 105 fAbsorCmd->SetToBeBroadcasted(false); 106 } 107 108 //....oooOO0OOooo........oooOO0OOooo........oo 109 110 DetectorMessenger::~DetectorMessenger() 111 { 112 delete fSizeYZCmd; 113 delete fNbLayersCmd; 114 delete fNbAbsorCmd; 115 delete fAbsorCmd; 116 delete fDetDir; 117 delete fTestemDir; 118 } 119 120 //....oooOO0OOooo........oooOO0OOooo........oo 121 122 void DetectorMessenger::SetNewValue(G4UIcomman 123 { 124 if (command == fSizeYZCmd) { 125 fDetector->SetCalorSizeYZ(fSizeYZCmd->GetN 126 } 127 128 if (command == fNbLayersCmd) { 129 fDetector->SetNbOfLayers(fNbLayersCmd->Get 130 } 131 132 if (command == fNbAbsorCmd) { 133 fDetector->SetNbOfAbsor(fNbAbsorCmd->GetNe 134 } 135 136 if (command == fAbsorCmd) { 137 G4int num; 138 G4double tick; 139 G4String unt, mat; 140 std::istringstream is(newValue); 141 is >> num >> mat >> tick >> unt; 142 G4String material = mat; 143 tick *= G4UIcommand::ValueOf(unt); 144 fDetector->SetAbsorMaterial(num, material) 145 fDetector->SetAbsorThickness(num, tick); 146 } 147 } 148 149 //....oooOO0OOooo........oooOO0OOooo........oo 150