Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // 26 /// \file electromagnetic/TestEm3/src/Detector << 26 // $Id: DetectorMessenger.cc,v 1.11 2006/06/29 16:52:26 gunter Exp $ 27 /// \brief Implementation of the DetectorMesse << 27 // GEANT4 tag $Name: geant4-09-02-patch-04 $ 28 // << 29 // 28 // 30 //....oooOO0OOooo........oooOO0OOooo........oo 29 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 31 //....oooOO0OOooo........oooOO0OOooo........oo 30 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 32 31 33 #include "DetectorMessenger.hh" 32 #include "DetectorMessenger.hh" 34 33 35 #include "DetectorConstruction.hh" << 34 #include <sstream> 36 35 37 #include "G4UIcmdWithADoubleAndUnit.hh" << 36 #include "DetectorConstruction.hh" 38 #include "G4UIcmdWithAnInteger.hh" << 39 #include "G4UIcmdWithoutParameter.hh" << 40 #include "G4UIcommand.hh" << 41 #include "G4UIdirectory.hh" 37 #include "G4UIdirectory.hh" >> 38 #include "G4UIcommand.hh" 42 #include "G4UIparameter.hh" 39 #include "G4UIparameter.hh" 43 << 40 #include "G4UIcmdWithAnInteger.hh" 44 #include <sstream> << 41 #include "G4UIcmdWithADoubleAndUnit.hh" >> 42 #include "G4UIcmdWithoutParameter.hh" 45 43 46 //....oooOO0OOooo........oooOO0OOooo........oo 44 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 47 45 48 DetectorMessenger::DetectorMessenger(DetectorC << 46 DetectorMessenger::DetectorMessenger(DetectorConstruction * Det) 49 { << 47 :Detector(Det) 50 fTestemDir = new G4UIdirectory("/testem/"); << 48 { 51 fTestemDir->SetGuidance("UI commands specifi << 49 testemDir = new G4UIdirectory("/testem/"); 52 << 50 testemDir->SetGuidance("UI commands specific to this example"); 53 fDetDir = new G4UIdirectory("/testem/det/"); << 51 54 fDetDir->SetGuidance("detector construction << 52 detDir = new G4UIdirectory("/testem/det/"); 55 << 53 detDir->SetGuidance("detector construction commands"); 56 fSizeYZCmd = new G4UIcmdWithADoubleAndUnit(" << 54 57 fSizeYZCmd->SetGuidance("Set tranverse size << 55 SizeYZCmd = new G4UIcmdWithADoubleAndUnit("/testem/det/setSizeYZ",this); 58 fSizeYZCmd->SetParameterName("Size", false); << 56 SizeYZCmd->SetGuidance("Set tranverse size of the calorimeter"); 59 fSizeYZCmd->SetRange("Size>0."); << 57 SizeYZCmd->SetParameterName("Size",false); 60 fSizeYZCmd->SetUnitCategory("Length"); << 58 SizeYZCmd->SetRange("Size>0."); 61 fSizeYZCmd->AvailableForStates(G4State_PreIn << 59 SizeYZCmd->SetUnitCategory("Length"); 62 fSizeYZCmd->SetToBeBroadcasted(false); << 60 SizeYZCmd->AvailableForStates(G4State_PreInit,G4State_Idle); 63 << 61 64 fNbLayersCmd = new G4UIcmdWithAnInteger("/te << 62 NbLayersCmd = new G4UIcmdWithAnInteger("/testem/det/setNbOfLayers",this); 65 fNbLayersCmd->SetGuidance("Set number of lay << 63 NbLayersCmd->SetGuidance("Set number of layers."); 66 fNbLayersCmd->SetParameterName("NbLayers", f << 64 NbLayersCmd->SetParameterName("NbLayers",false); 67 fNbLayersCmd->SetRange("NbLayers>0"); << 65 NbLayersCmd->SetRange("NbLayers>0"); 68 fNbLayersCmd->AvailableForStates(G4State_Pre << 66 NbLayersCmd->AvailableForStates(G4State_PreInit,G4State_Idle); 69 fNbLayersCmd->SetToBeBroadcasted(false); << 67 70 << 68 NbAbsorCmd = new G4UIcmdWithAnInteger("/testem/det/setNbOfAbsor",this); 71 fNbAbsorCmd = new G4UIcmdWithAnInteger("/tes << 69 NbAbsorCmd->SetGuidance("Set number of Absorbers."); 72 fNbAbsorCmd->SetGuidance("Set number of Abso << 70 NbAbsorCmd->SetParameterName("NbAbsor",false); 73 fNbAbsorCmd->SetParameterName("NbAbsor", fal << 71 NbAbsorCmd->SetRange("NbAbsor>0"); 74 fNbAbsorCmd->SetRange("NbAbsor>0"); << 72 NbAbsorCmd->AvailableForStates(G4State_PreInit,G4State_Idle); 75 fNbAbsorCmd->AvailableForStates(G4State_PreI << 73 76 fNbAbsorCmd->SetToBeBroadcasted(false); << 74 AbsorCmd = new G4UIcommand("/testem/det/setAbsor",this); 77 << 75 AbsorCmd->SetGuidance("Set the absor nb, the material, the thickness."); 78 fAbsorCmd = new G4UIcommand("/testem/det/set << 76 AbsorCmd->SetGuidance(" absor number : from 1 to NbOfAbsor"); 79 fAbsorCmd->SetGuidance("Set the absor nb, th << 77 AbsorCmd->SetGuidance(" material name"); 80 fAbsorCmd->SetGuidance(" absor number : fro << 78 AbsorCmd->SetGuidance(" thickness (with unit) : t>0."); 81 fAbsorCmd->SetGuidance(" material name"); << 82 fAbsorCmd->SetGuidance(" thickness (with un << 83 // 79 // 84 G4UIparameter* AbsNbPrm = new G4UIparameter( << 80 G4UIparameter* AbsNbPrm = new G4UIparameter("AbsorNb",'i',false); 85 AbsNbPrm->SetGuidance("absor number : from 1 81 AbsNbPrm->SetGuidance("absor number : from 1 to NbOfAbsor"); 86 AbsNbPrm->SetParameterRange("AbsorNb>0"); 82 AbsNbPrm->SetParameterRange("AbsorNb>0"); 87 fAbsorCmd->SetParameter(AbsNbPrm); << 83 AbsorCmd->SetParameter(AbsNbPrm); 88 // 84 // 89 G4UIparameter* MatPrm = new G4UIparameter("m << 85 G4UIparameter* MatPrm = new G4UIparameter("material",'s',false); 90 MatPrm->SetGuidance("material name"); 86 MatPrm->SetGuidance("material name"); 91 fAbsorCmd->SetParameter(MatPrm); << 87 AbsorCmd->SetParameter(MatPrm); 92 // << 88 // 93 G4UIparameter* ThickPrm = new G4UIparameter( << 89 G4UIparameter* ThickPrm = new G4UIparameter("thickness",'d',false); 94 ThickPrm->SetGuidance("thickness of absorber 90 ThickPrm->SetGuidance("thickness of absorber"); 95 ThickPrm->SetParameterRange("thickness>0."); 91 ThickPrm->SetParameterRange("thickness>0."); 96 fAbsorCmd->SetParameter(ThickPrm); << 92 AbsorCmd->SetParameter(ThickPrm); 97 // 93 // 98 G4UIparameter* unitPrm = new G4UIparameter(" << 94 G4UIparameter* unitPrm = new G4UIparameter("unit",'s',false); 99 unitPrm->SetGuidance("unit of thickness"); 95 unitPrm->SetGuidance("unit of thickness"); 100 G4String unitList = G4UIcommand::UnitsList(G 96 G4String unitList = G4UIcommand::UnitsList(G4UIcommand::CategoryOf("mm")); 101 unitPrm->SetParameterCandidates(unitList); 97 unitPrm->SetParameterCandidates(unitList); 102 fAbsorCmd->SetParameter(unitPrm); << 98 AbsorCmd->SetParameter(unitPrm); 103 // 99 // 104 fAbsorCmd->AvailableForStates(G4State_PreIni << 100 AbsorCmd->AvailableForStates(G4State_PreInit,G4State_Idle); 105 fAbsorCmd->SetToBeBroadcasted(false); << 101 >> 102 MagFieldCmd = new G4UIcmdWithADoubleAndUnit("/testem/det/setField",this); >> 103 MagFieldCmd->SetGuidance("Define magnetic field."); >> 104 MagFieldCmd->SetGuidance("Magnetic field will be in Z direction."); >> 105 MagFieldCmd->SetParameterName("Bz",false); >> 106 MagFieldCmd->SetUnitCategory("Magnetic flux density"); >> 107 MagFieldCmd->AvailableForStates(G4State_PreInit,G4State_Idle); >> 108 >> 109 UpdateCmd = new G4UIcmdWithoutParameter("/testem/det/update",this); >> 110 UpdateCmd->SetGuidance("Update calorimeter geometry."); >> 111 UpdateCmd->SetGuidance("This command MUST be applied before \"beamOn\" "); >> 112 UpdateCmd->SetGuidance("if you changed geometrical value(s)."); >> 113 UpdateCmd->AvailableForStates(G4State_Idle); 106 } 114 } 107 115 108 //....oooOO0OOooo........oooOO0OOooo........oo 116 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 109 117 110 DetectorMessenger::~DetectorMessenger() 118 DetectorMessenger::~DetectorMessenger() 111 { 119 { 112 delete fSizeYZCmd; << 120 delete SizeYZCmd; 113 delete fNbLayersCmd; << 121 delete NbLayersCmd; 114 delete fNbAbsorCmd; << 122 delete NbAbsorCmd; 115 delete fAbsorCmd; << 123 delete AbsorCmd; 116 delete fDetDir; << 124 delete MagFieldCmd; 117 delete fTestemDir; << 125 delete UpdateCmd; >> 126 delete detDir; >> 127 delete testemDir; 118 } 128 } 119 129 120 //....oooOO0OOooo........oooOO0OOooo........oo 130 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 121 131 122 void DetectorMessenger::SetNewValue(G4UIcomman << 132 void DetectorMessenger::SetNewValue(G4UIcommand* command,G4String newValue) 123 { 133 { 124 if (command == fSizeYZCmd) { << 134 if( command == SizeYZCmd ) 125 fDetector->SetCalorSizeYZ(fSizeYZCmd->GetN << 135 { Detector->SetCalorSizeYZ(SizeYZCmd->GetNewDoubleValue(newValue));} 126 } << 136 127 << 137 if( command == NbLayersCmd ) 128 if (command == fNbLayersCmd) { << 138 { Detector->SetNbOfLayers(NbLayersCmd->GetNewIntValue(newValue));} 129 fDetector->SetNbOfLayers(fNbLayersCmd->Get << 139 130 } << 140 if( command == NbAbsorCmd ) 131 << 141 { Detector->SetNbOfAbsor(NbAbsorCmd->GetNewIntValue(newValue));} 132 if (command == fNbAbsorCmd) { << 142 133 fDetector->SetNbOfAbsor(fNbAbsorCmd->GetNe << 143 if (command == AbsorCmd) 134 } << 144 { 135 << 145 G4int num; G4double tick; 136 if (command == fAbsorCmd) { << 146 G4String unt, mat; 137 G4int num; << 147 std::istringstream is(newValue); 138 G4double tick; << 148 is >> num >> mat >> tick >> unt; 139 G4String unt, mat; << 149 G4String material=mat; 140 std::istringstream is(newValue); << 150 tick *= G4UIcommand::ValueOf(unt); 141 is >> num >> mat >> tick >> unt; << 151 Detector->SetAbsorMaterial (num,material); 142 G4String material = mat; << 152 Detector->SetAbsorThickness(num,tick); 143 tick *= G4UIcommand::ValueOf(unt); << 153 } 144 fDetector->SetAbsorMaterial(num, material) << 154 145 fDetector->SetAbsorThickness(num, tick); << 155 if( command == MagFieldCmd ) 146 } << 156 { Detector->SetMagField(MagFieldCmd->GetNewDoubleValue(newValue));} >> 157 >> 158 if( command == UpdateCmd ) >> 159 { Detector->UpdateGeometry();} 147 } 160 } 148 161 149 //....oooOO0OOooo........oooOO0OOooo........oo 162 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 150 163