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 hadronic/Hadr00/src/DetectorMessenge << 27 /// \brief Implementation of the DetectorMesse << 28 // << 29 // 26 // >> 27 // $Id: DetectorMessenger.cc,v 1.1 2008/07/07 16:37:26 vnivanch Exp $ >> 28 // GEANT4 tag $Name: geant4-09-02 $ 30 // 29 // 31 // 30 // 32 ////////////////////////////////////////////// 31 ///////////////////////////////////////////////////////////////////////// 33 // 32 // 34 // DetectorMessenger 33 // DetectorMessenger 35 // 34 // 36 // Created: 20.06.08 V.Ivanchenko 35 // Created: 20.06.08 V.Ivanchenko 37 // 36 // 38 // Modified: 37 // Modified: 39 // 38 // 40 ////////////////////////////////////////////// 39 //////////////////////////////////////////////////////////////////////// 41 // 40 // 42 41 43 #include "DetectorMessenger.hh" 42 #include "DetectorMessenger.hh" 44 43 45 #include "DetectorConstruction.hh" 44 #include "DetectorConstruction.hh" 46 #include "HistoManager.hh" << 45 #include "G4UIdirectory.hh" 47 << 48 #include "G4RadioactiveDecayPhysics.hh" << 49 #include "G4UIcmdWith3Vector.hh" << 50 #include "G4UIcmdWithABool.hh" 46 #include "G4UIcmdWithABool.hh" 51 #include "G4UIcmdWithADoubleAndUnit.hh" << 52 #include "G4UIcmdWithAString.hh" 47 #include "G4UIcmdWithAString.hh" 53 #include "G4UIcmdWithAnInteger.hh" 48 #include "G4UIcmdWithAnInteger.hh" >> 49 #include "G4UIcmdWith3Vector.hh" >> 50 #include "G4UIcmdWithADoubleAndUnit.hh" 54 #include "G4UIcmdWithoutParameter.hh" 51 #include "G4UIcmdWithoutParameter.hh" 55 #include "G4UIdirectory.hh" << 52 #include "HistoManager.hh" 56 #include "G4VModularPhysicsList.hh" << 57 53 58 //....oooOO0OOooo........oooOO0OOooo........oo 54 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 59 55 60 DetectorMessenger::DetectorMessenger(DetectorC << 56 DetectorMessenger::DetectorMessenger(DetectorConstruction * Det) >> 57 :Detector(Det) 61 { 58 { 62 ftestDir = new G4UIdirectory("/testhadr/"); << 59 testDir = new G4UIdirectory("/testhadr/"); 63 ftestDir->SetGuidance(" Hadronic Extended Ex << 60 testDir->SetGuidance(" Hadronic Extended Example."); 64 61 65 fmatCmd = new G4UIcmdWithAString("/testhadr/ << 62 matCmd = new G4UIcmdWithAString("/testhadr/TargetMat",this); 66 fmatCmd->SetGuidance("Select Material for th << 63 matCmd->SetGuidance("Select Material for the target"); 67 fmatCmd->SetParameterName("tMaterial", false << 64 matCmd->SetParameterName("tMaterial",false); 68 fmatCmd->AvailableForStates(G4State_PreInit, << 65 matCmd->AvailableForStates(G4State_PreInit,G4State_Idle); 69 fmatCmd->SetToBeBroadcasted(false); << 66 70 << 67 mat1Cmd = new G4UIcmdWithAString("/testhadr/WorldMat",this); 71 fmat1Cmd = new G4UIcmdWithAString("/testhadr << 68 mat1Cmd->SetGuidance("Select Material for world"); 72 fmat1Cmd->SetGuidance("Select Material for w << 69 mat1Cmd->SetParameterName("wMaterial",false); 73 fmat1Cmd->SetParameterName("wMaterial", fals << 70 mat1Cmd->AvailableForStates(G4State_PreInit,G4State_Idle); 74 fmat1Cmd->AvailableForStates(G4State_PreInit << 71 75 fmat1Cmd->SetToBeBroadcasted(false); << 72 rCmd = new G4UIcmdWithADoubleAndUnit("/testhadr/TargetRadius",this); 76 << 73 rCmd->SetGuidance("Set radius of the target"); 77 fRDCmd = new G4UIcmdWithABool("/testhadr/Rad << 74 rCmd->SetParameterName("radius",false); 78 fRDCmd->SetGuidance("Enable radioactive deca << 75 rCmd->SetUnitCategory("Length"); 79 fRDCmd->SetParameterName("RD", false); << 76 rCmd->SetRange("radius>0"); 80 fRDCmd->AvailableForStates(G4State_PreInit); << 77 rCmd->AvailableForStates(G4State_PreInit,G4State_Idle); 81 fRDCmd->SetToBeBroadcasted(false); << 78 82 << 79 lCmd = new G4UIcmdWithADoubleAndUnit("/testhadr/TargetLength",this); 83 frCmd = new G4UIcmdWithADoubleAndUnit("/test << 80 lCmd->SetGuidance("Set length of the target"); 84 frCmd->SetGuidance("Set radius of the target << 81 lCmd->SetParameterName("length",false); 85 frCmd->SetParameterName("radius", false); << 82 lCmd->SetUnitCategory("Length"); 86 frCmd->SetUnitCategory("Length"); << 83 lCmd->SetRange("length>0"); 87 frCmd->SetRange("radius>0"); << 84 lCmd->AvailableForStates(G4State_PreInit,G4State_Idle); 88 frCmd->AvailableForStates(G4State_PreInit, G << 85 89 frCmd->SetToBeBroadcasted(false); << 86 binCmd = new G4UIcmdWithAnInteger("/testhadr/nBinsE",this); 90 << 87 binCmd->SetGuidance("Set number of bins for energy"); 91 flCmd = new G4UIcmdWithADoubleAndUnit("/test << 88 binCmd->SetParameterName("NEbins",false); 92 flCmd->SetGuidance("Set length of the target << 89 binCmd->AvailableForStates(G4State_PreInit,G4State_Idle); 93 flCmd->SetParameterName("length", false); << 90 94 flCmd->SetUnitCategory("Length"); << 91 nOfAbsCmd = new G4UIcmdWithAnInteger("/testhadr/nBinsP",this); 95 flCmd->SetRange("length>0"); << 92 nOfAbsCmd->SetGuidance("Set number of bins for momentum"); 96 flCmd->AvailableForStates(G4State_PreInit, G << 93 nOfAbsCmd->SetParameterName("NPbins",false); 97 flCmd->SetToBeBroadcasted(false); << 94 nOfAbsCmd->AvailableForStates(G4State_PreInit,G4State_Idle); >> 95 >> 96 updateCmd = new G4UIcmdWithoutParameter("/testhadr/update",this); >> 97 updateCmd->SetGuidance("Update geometry."); >> 98 updateCmd->SetGuidance("This command MUST be applied before \"beamOn\" "); >> 99 updateCmd->SetGuidance("if you changed geometrical value(s)"); >> 100 updateCmd->AvailableForStates(G4State_PreInit,G4State_Idle); >> 101 >> 102 partCmd = new G4UIcmdWithAString("/testhadr/particle",this); >> 103 partCmd->SetGuidance("Set particle name"); >> 104 partCmd->SetParameterName("Particle",false); >> 105 partCmd->AvailableForStates(G4State_PreInit,G4State_Idle); >> 106 >> 107 csCmd = new G4UIcmdWithAString("/testhadr/targetElm",this); >> 108 csCmd->SetGuidance("Set element name"); >> 109 csCmd->SetParameterName("Elm",false); >> 110 csCmd->AvailableForStates(G4State_PreInit,G4State_Idle); >> 111 >> 112 e1Cmd = new G4UIcmdWithADoubleAndUnit("/testhadr/minEnergy",this); >> 113 e1Cmd->SetGuidance("Set min kinetic energy"); >> 114 e1Cmd->SetParameterName("eMin",false); >> 115 e1Cmd->SetUnitCategory("Energy"); >> 116 e1Cmd->AvailableForStates(G4State_PreInit,G4State_Idle); >> 117 >> 118 e2Cmd = new G4UIcmdWithADoubleAndUnit("/testhadr/maxEnergy",this); >> 119 e2Cmd->SetGuidance("Set max kinetic energy"); >> 120 e2Cmd->SetParameterName("eMax",false); >> 121 e2Cmd->SetUnitCategory("Energy"); >> 122 e2Cmd->AvailableForStates(G4State_PreInit,G4State_Idle); >> 123 >> 124 p1Cmd = new G4UIcmdWithADoubleAndUnit("/testhadr/minMomentum",this); >> 125 p1Cmd->SetGuidance("Set min momentum"); >> 126 p1Cmd->SetParameterName("pMin",false); >> 127 p1Cmd->SetUnitCategory("Energy"); >> 128 p1Cmd->AvailableForStates(G4State_PreInit,G4State_Idle); >> 129 >> 130 p2Cmd = new G4UIcmdWithADoubleAndUnit("/testhadr/maxMomentum",this); >> 131 p2Cmd->SetGuidance("Set max momentum"); >> 132 p2Cmd->SetParameterName("pMax",false); >> 133 p2Cmd->SetUnitCategory("Energy"); >> 134 p2Cmd->AvailableForStates(G4State_PreInit,G4State_Idle); >> 135 >> 136 verbCmd = new G4UIcmdWithAnInteger("/testhadr/verbose",this); >> 137 verbCmd->SetGuidance("Set verbose for "); >> 138 verbCmd->SetParameterName("verb",false); >> 139 verbCmd->AvailableForStates(G4State_PreInit,G4State_Idle); 98 } 140 } 99 141 100 //....oooOO0OOooo........oooOO0OOooo........oo 142 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 101 143 102 DetectorMessenger::~DetectorMessenger() 144 DetectorMessenger::~DetectorMessenger() 103 { 145 { 104 delete fmatCmd; << 146 delete matCmd; 105 delete fmat1Cmd; << 147 delete mat1Cmd; 106 delete fRDCmd; << 148 delete rCmd; 107 delete frCmd; << 149 delete lCmd; 108 delete flCmd; << 150 delete nOfAbsCmd; 109 delete ftestDir; << 151 delete updateCmd; >> 152 delete testDir; >> 153 delete partCmd; >> 154 delete csCmd; >> 155 delete e1Cmd; >> 156 delete e2Cmd; >> 157 delete p1Cmd; >> 158 delete p2Cmd; >> 159 delete verbCmd; 110 } 160 } 111 161 112 //....oooOO0OOooo........oooOO0OOooo........oo 162 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 113 163 114 void DetectorMessenger::SetNewValue(G4UIcomman 164 void DetectorMessenger::SetNewValue(G4UIcommand* command, G4String newValue) 115 { 165 { 116 if (command == fmatCmd) { << 166 HistoManager* histo = HistoManager::GetPointer(); 117 fDetector->SetTargetMaterial(newValue); << 167 if( command == matCmd ) { 118 } << 168 Detector->SetTargetMaterial(newValue); 119 else if (command == fmat1Cmd) { << 169 } else if( command == mat1Cmd ) { 120 fDetector->SetWorldMaterial(newValue); << 170 Detector->SetWorldMaterial(newValue); 121 } << 171 } else if( command == rCmd ) { 122 else if (command == frCmd) { << 172 Detector->SetTargetRadius(rCmd->GetNewDoubleValue(newValue)); 123 fDetector->SetTargetRadius(frCmd->GetNewDo << 173 } else if( command == lCmd ) { 124 } << 174 Detector->SetTargetLength(lCmd->GetNewDoubleValue(newValue)); 125 else if (command == flCmd) { << 175 } else if( command == updateCmd ) { 126 fDetector->SetTargetLength(flCmd->GetNewDo << 176 Detector->UpdateGeometry(); 127 } << 177 } else if( command == binCmd ) { 128 else if (command == fRDCmd) { << 178 histo->SetNumberOfBinsE(binCmd->GetNewIntValue(newValue)); 129 if (fRDCmd->GetNewBoolValue(newValue)) { << 179 } else if( command == nOfAbsCmd ) { 130 fDetector->GetPhysicsList()->RegisterPhy << 180 histo->SetNumberOfBinsP(nOfAbsCmd->GetNewIntValue(newValue)); 131 } << 181 } else if( command == verbCmd ) { >> 182 histo->SetVerbose(verbCmd->GetNewIntValue(newValue)); >> 183 } else if( command == partCmd ) { >> 184 histo->SetParticleName(newValue); >> 185 } else if( command == csCmd ) { >> 186 histo->SetElementName(newValue); >> 187 } else if( command == e1Cmd ) { >> 188 histo->SetMinKinEnergy(e1Cmd->GetNewDoubleValue(newValue)); >> 189 } else if( command == e2Cmd ) { >> 190 histo->SetMaxKinEnergy(e2Cmd->GetNewDoubleValue(newValue)); >> 191 } else if( command == p1Cmd ) { >> 192 histo->SetMinMomentum(p1Cmd->GetNewDoubleValue(newValue)); >> 193 } else if( command == p2Cmd ) { >> 194 histo->SetMaxMomentum(p2Cmd->GetNewDoubleValue(newValue)); 132 } 195 } 133 } 196 } 134 197 135 //....oooOO0OOooo........oooOO0OOooo........oo 198 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... >> 199 136 200