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 // 26 // 27 /// \file ExGflashMessenger.cc 27 /// \file ExGflashMessenger.cc 28 /// \brief Implementation of the ExGflashMesse 28 /// \brief Implementation of the ExGflashMessenger class 29 // 29 // 30 //....oooOO0OOooo........oooOO0OOooo........oo 30 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 31 //....oooOO0OOooo........oooOO0OOooo........oo 31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 32 32 33 #include "ExGflashMessenger.hh" 33 #include "ExGflashMessenger.hh" 34 34 35 #include "ExGflashDetectorConstruction.hh" 35 #include "ExGflashDetectorConstruction.hh" 36 36 37 #include "G4UIcmdWith3Vector.hh" 37 #include "G4UIcmdWith3Vector.hh" 38 #include "G4UIcmdWithADoubleAndUnit.hh" 38 #include "G4UIcmdWithADoubleAndUnit.hh" 39 #include "G4UIcmdWithAString.hh" 39 #include "G4UIcmdWithAString.hh" 40 #include "G4UIcmdWithAnInteger.hh" 40 #include "G4UIcmdWithAnInteger.hh" 41 #include "G4UIcmdWithoutParameter.hh" 41 #include "G4UIcmdWithoutParameter.hh" 42 #include "G4UIdirectory.hh" 42 #include "G4UIdirectory.hh" 43 43 44 //....oooOO0OOooo........oooOO0OOooo........oo 44 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 45 45 46 ExGflashMessenger::ExGflashMessenger(ExGflashD 46 ExGflashMessenger::ExGflashMessenger(ExGflashDetectorConstruction* Det) : fDetector(Det) 47 { 47 { 48 fExGflashDir = new G4UIdirectory("/exgflash/ 48 fExGflashDir = new G4UIdirectory("/exgflash/"); 49 fExGflashDir->SetGuidance(" Gflash example c 49 fExGflashDir->SetGuidance(" Gflash example commands."); 50 50 51 fVerbose = new G4UIcmdWithAnInteger("/exgfla 51 fVerbose = new G4UIcmdWithAnInteger("/exgflash/verbose", this); 52 fVerbose->SetGuidance("set exglash verbosity 52 fVerbose->SetGuidance("set exglash verbosity"); 53 fVerbose->SetGuidance("0- silent, 1 - init, << 53 fVerbose->SetGuidance("0- silent, 1 - on exit, 2 - run , 3 - event"); 54 fVerbose->SetParameterName("ver", false); 54 fVerbose->SetParameterName("ver", false); 55 fVerbose->SetRange("ver >= 0"); 55 fVerbose->SetRange("ver >= 0"); 56 fVerbose->AvailableForStates(G4State_PreInit 56 fVerbose->AvailableForStates(G4State_PreInit, G4State_Idle); 57 fVerbose->SetToBeBroadcasted(false); 57 fVerbose->SetToBeBroadcasted(false); 58 58 59 fDetDir = new G4UIdirectory("/exgflash/det/" 59 fDetDir = new G4UIdirectory("/exgflash/det/"); 60 fDetDir->SetGuidance("detector construction 60 fDetDir->SetGuidance("detector construction commands"); 61 61 >> 62 fMaterCmd = new G4UIcmdWithAString("/exgflash/det/setMat", this); >> 63 fMaterCmd->SetGuidance("Select Material."); >> 64 fMaterCmd->SetParameterName("material", false); >> 65 fMaterCmd->AvailableForStates(G4State_PreInit, G4State_Idle); >> 66 fMaterCmd->SetToBeBroadcasted(false); >> 67 62 fLBinCmd = new G4UIcmdWith3Vector("/exgflash 68 fLBinCmd = new G4UIcmdWith3Vector("/exgflash/det/setLbin", this); 63 fLBinCmd->SetGuidance("set longitudinal bini 69 fLBinCmd->SetGuidance("set longitudinal bining"); 64 fLBinCmd->SetGuidance("nLtot - nb of bins; << 70 fLBinCmd->SetGuidance("nb of bins; bin thickness (in radl)"); 65 fLBinCmd->SetGuidance("dLradl - bin thicknes << 71 // must have omitable==true we use 2 values only 66 fLBinCmd->SetGuidance("LStart - dummy"); << 72 fLBinCmd->SetParameterName("nLtot", "dLradl", " ", true); 67 fLBinCmd->SetParameterName("nLtot", "dLradl" << 68 fLBinCmd->SetDefaultValue(G4ThreeVector{100. << 69 fLBinCmd->SetRange("nLtot>=1 && dLradl>0"); 73 fLBinCmd->SetRange("nLtot>=1 && dLradl>0"); 70 fLBinCmd->AvailableForStates(G4State_PreInit 74 fLBinCmd->AvailableForStates(G4State_PreInit, G4State_Idle); 71 fLBinCmd->SetToBeBroadcasted(false); 75 fLBinCmd->SetToBeBroadcasted(false); 72 76 73 fRBinCmd = new G4UIcmdWith3Vector("/exgflash 77 fRBinCmd = new G4UIcmdWith3Vector("/exgflash/det/setRbin", this); 74 fRBinCmd->SetGuidance("set radial bining"); 78 fRBinCmd->SetGuidance("set radial bining"); 75 fRBinCmd->SetGuidance("nRtot - nb of bins; << 79 fRBinCmd->SetGuidance("nb of bins; bin thickness (in radl)"); 76 fRBinCmd->SetGuidance("dRradl - bin thicknes << 80 fRBinCmd->SetParameterName("nRtot", "dRradl", " ", true); 77 fRBinCmd->SetGuidance("RStart - dummy"); << 78 fRBinCmd->SetParameterName("nRtot", "dRradl" << 79 fRBinCmd->SetDefaultValue(G4ThreeVector{80.0 << 80 fRBinCmd->SetRange("nRtot>=1 && dRradl>0"); 81 fRBinCmd->SetRange("nRtot>=1 && dRradl>0"); 81 fRBinCmd->AvailableForStates(G4State_PreInit 82 fRBinCmd->AvailableForStates(G4State_PreInit, G4State_Idle); 82 fRBinCmd->SetToBeBroadcasted(false); 83 fRBinCmd->SetToBeBroadcasted(false); 83 << 84 fMaterCmd = new G4UIcmdWithAString("/exgflas << 85 fMaterCmd->SetGuidance("Select Material."); << 86 fMaterCmd->SetParameterName("material", fals << 87 fMaterCmd->AvailableForStates(G4State_PreIni << 88 fMaterCmd->SetToBeBroadcasted(false); << 89 << 90 fNbCrysCmd = new G4UIcmdWithAnInteger("/exgf << 91 fNbCrysCmd->SetGuidance("set numbber of crys << 92 fNbCrysCmd->SetGuidance("ncrys - number of << 93 fNbCrysCmd->SetParameterName("ncrys", false) << 94 fNbCrysCmd->SetRange("ncrys > 0"); << 95 fNbCrysCmd->AvailableForStates(G4State_PreIn << 96 fNbCrysCmd->SetToBeBroadcasted(false); << 97 << 98 fWCrysCmd = new G4UIcmdWithADoubleAndUnit("/ << 99 fWCrysCmd->SetGuidance("set crystal width (c << 100 fWCrysCmd->SetGuidance("wcrys - width of cr << 101 fWCrysCmd->SetParameterName("wcrys", false); << 102 fWCrysCmd->SetRange("wcrys > 0"); << 103 fWCrysCmd->SetUnitCategory("Length"); << 104 fWCrysCmd->SetDefaultUnit("cm"); << 105 fWCrysCmd->AvailableForStates(G4State_PreIni << 106 fWCrysCmd->SetToBeBroadcasted(false); << 107 << 108 fLCrysCmd = new G4UIcmdWithADoubleAndUnit("/ << 109 fLCrysCmd->SetGuidance("set crystal length ( << 110 fLCrysCmd->SetGuidance("lcrys - crystal len << 111 fLCrysCmd->SetParameterName("lcrys", false); << 112 fLCrysCmd->SetRange("lcrys > 0"); << 113 fLCrysCmd->SetUnitCategory("Length"); << 114 fLCrysCmd->SetDefaultUnit("cm"); << 115 fLCrysCmd->AvailableForStates(G4State_PreIni << 116 fLCrysCmd->SetToBeBroadcasted(false); << 117 } 84 } 118 85 119 //....oooOO0OOooo........oooOO0OOooo........oo 86 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 120 87 121 ExGflashMessenger::~ExGflashMessenger() 88 ExGflashMessenger::~ExGflashMessenger() 122 { 89 { 123 delete fLCrysCmd; << 124 delete fWCrysCmd; << 125 delete fNbCrysCmd; << 126 delete fMaterCmd; << 127 delete fRBinCmd; 90 delete fRBinCmd; 128 delete fLBinCmd; 91 delete fLBinCmd; >> 92 delete fMaterCmd; 129 delete fDetDir; 93 delete fDetDir; 130 delete fVerbose; 94 delete fVerbose; 131 delete fExGflashDir; 95 delete fExGflashDir; 132 } 96 } 133 97 134 //....oooOO0OOooo........oooOO0OOooo........oo 98 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 135 99 136 void ExGflashMessenger::SetNewValue(G4UIcomman 100 void ExGflashMessenger::SetNewValue(G4UIcommand* command, G4String newValue) 137 { 101 { 138 if (command == fMaterCmd) { 102 if (command == fMaterCmd) { 139 fDetector->SetMaterial(newValue); 103 fDetector->SetMaterial(newValue); 140 } << 141 << 142 if (command == fNbCrysCmd) { << 143 fDetector->SetNbOfCrystals(fNbCrysCmd->Get << 144 } << 145 << 146 if (command == fWCrysCmd) { << 147 fDetector->SetCrystalWidth(fWCrysCmd->GetN << 148 } << 149 << 150 if (command == fLCrysCmd) { << 151 fDetector->SetCrystalLength(fLCrysCmd->Get << 152 } 104 } 153 105 154 if (command == fVerbose) { 106 if (command == fVerbose) { 155 fDetector->SetVerbose(fVerbose->GetNewIntV 107 fDetector->SetVerbose(fVerbose->GetNewIntValue(newValue)); 156 } 108 } 157 109 158 if (command == fLBinCmd) { 110 if (command == fLBinCmd) { 159 fDetector->SetLBining(fLBinCmd->GetNew3Vec 111 fDetector->SetLBining(fLBinCmd->GetNew3VectorValue(newValue)); 160 } 112 } 161 113 162 if (command == fRBinCmd) { 114 if (command == fRBinCmd) { 163 fDetector->SetRBining(fRBinCmd->GetNew3Vec 115 fDetector->SetRBining(fRBinCmd->GetNew3VectorValue(newValue)); 164 } 116 } 165 } 117 } 166 118 167 //....oooOO0OOooo........oooOO0OOooo........oo 119 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 168 120