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/TestEm8/src/PhysicsL << 26 // $Id: PhysicsListMessenger.cc,v 1.3 2010-09-08 09:12:10 vnivanch Exp $ 27 /// \brief Implementation of the PhysicsListMe << 27 // GEANT4 tag $Name: geant4-09-04-patch-01 $ 28 // << 29 // 28 // 30 //-------------------------------------------- 29 //--------------------------------------------------------------------------- 31 // 30 // 32 // ClassName: PhysicsListMessenger 31 // ClassName: PhysicsListMessenger 33 // 32 // 34 // Description: EM physics with a possibility 33 // Description: EM physics with a possibility to add PAI model 35 // 34 // 36 // Author: V.Ivanchenko 01.09.2010 35 // Author: V.Ivanchenko 01.09.2010 37 // 36 // 38 //-------------------------------------------- 37 //---------------------------------------------------------------------------- 39 // << 38 // 40 39 41 //....oooOO0OOooo........oooOO0OOooo........oo 40 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 42 //....oooOO0OOooo........oooOO0OOooo........oo 41 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 43 42 44 #include "PhysicsListMessenger.hh" 43 #include "PhysicsListMessenger.hh" 45 44 46 #include "PhysicsList.hh" 45 #include "PhysicsList.hh" 47 #include "TestParameters.hh" << 48 << 49 #include "G4UIcmdWithADouble.hh" << 50 #include "G4UIcmdWithADoubleAndUnit.hh" 46 #include "G4UIcmdWithADoubleAndUnit.hh" 51 #include "G4UIcmdWithAString.hh" 47 #include "G4UIcmdWithAString.hh" 52 #include "G4UIcmdWithAnInteger.hh" 48 #include "G4UIcmdWithAnInteger.hh" 53 #include "G4UIdirectory.hh" << 49 #include "HistoManager.hh" 54 50 55 //....oooOO0OOooo........oooOO0OOooo........oo 51 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 56 52 57 PhysicsListMessenger::PhysicsListMessenger(Phy << 53 PhysicsListMessenger::PhysicsListMessenger(PhysicsList* pPhys) 58 { << 54 :pPhysicsList(pPhys) 59 fPhysDir = new G4UIdirectory("/testem/phys/" << 55 { 60 fPhysDir->SetGuidance("physics list commands << 56 eCmd = new G4UIcmdWithADoubleAndUnit("/testem/phys/setMaxE",this); 61 << 57 eCmd->SetGuidance("Set max energy deposit"); 62 fECmd = new G4UIcmdWithADoubleAndUnit("/test << 58 eCmd->SetParameterName("Emax",false); 63 fECmd->SetGuidance("Set max energy deposit") << 59 eCmd->SetUnitCategory("Energy"); 64 fECmd->SetParameterName("Emax", false); << 60 eCmd->SetRange("Emax>0.0"); 65 fECmd->SetUnitCategory("Energy"); << 61 eCmd->AvailableForStates(G4State_PreInit,G4State_Idle); 66 fECmd->SetRange("Emax>0.0"); << 62 67 fECmd->AvailableForStates(G4State_PreInit, G << 63 ebCmd = new G4UIcmdWithAnInteger("/testem/phys/setNbinsE",this); 68 << 64 ebCmd->SetGuidance("Set number of bins in energy."); 69 fEBCmd = new G4UIcmdWithAnInteger("/testem/p << 65 ebCmd->SetParameterName("Ebins",false); 70 fEBCmd->SetGuidance("Set number of bins in e << 66 ebCmd->SetRange("Ebins>0"); 71 fEBCmd->SetParameterName("Ebins", false); << 67 ebCmd->AvailableForStates(G4State_PreInit,G4State_Idle); 72 fEBCmd->SetRange("Ebins>0"); << 68 73 fEBCmd->AvailableForStates(G4State_PreInit, << 69 cbCmd = new G4UIcmdWithAnInteger("/testem/phys/setNbinsCl",this); 74 << 70 cbCmd->SetGuidance("Set max number of clusters."); 75 fCBCmd = new G4UIcmdWithAnInteger("/testem/p << 71 cbCmd->SetParameterName("Cbins",false); 76 fCBCmd->SetGuidance("Set number of bins of c << 72 cbCmd->SetRange("Cbins>0"); 77 fCBCmd->SetParameterName("Cbins", false); << 73 cbCmd->AvailableForStates(G4State_PreInit,G4State_Idle); 78 fCBCmd->SetRange("Cbins>0"); << 74 79 fCBCmd->AvailableForStates(G4State_PreInit, << 75 pListCmd = new G4UIcmdWithAString("/testem/phys/addPhysics",this); 80 << 76 pListCmd->SetGuidance("Add modula physics list."); 81 fCMCmd = new G4UIcmdWithAnInteger("/testem/p << 77 pListCmd->SetParameterName("PList",false); 82 fCMCmd->SetGuidance("Set max number of clust << 78 pListCmd->AvailableForStates(G4State_PreInit); 83 fCMCmd->SetParameterName("Cmax", false); << 84 fCMCmd->SetRange("Cmax>0"); << 85 fCMCmd->AvailableForStates(G4State_PreInit, << 86 << 87 fListCmd = new G4UIcmdWithAString("/testem/p << 88 fListCmd->SetGuidance("Add modula physics li << 89 fListCmd->SetParameterName("PList", false); << 90 fListCmd->AvailableForStates(G4State_PreInit << 91 << 92 fADCCmd = new G4UIcmdWithADoubleAndUnit("/te << 93 fADCCmd->SetGuidance("Set energy per ADC cha << 94 fADCCmd->SetParameterName("enadc", false, fa << 95 fADCCmd->SetUnitCategory("Energy"); << 96 fADCCmd->SetDefaultUnit("keV"); << 97 fADCCmd->SetRange("enadc>0."); << 98 fADCCmd->AvailableForStates(G4State_PreInit, << 99 << 100 fNorCmd = new G4UIcmdWithADouble("/testem/ph << 101 fNorCmd->SetGuidance("Set factor for histogr << 102 fNorCmd->SetParameterName("nfac", false, fal << 103 fNorCmd->SetRange("nfac>0."); << 104 fNorCmd->AvailableForStates(G4State_PreInit, << 105 << 106 fSmCmd = new G4UIcmdWithADoubleAndUnit("/tes << 107 fSmCmd->SetGuidance("Set intrinsic width of << 108 fSmCmd->SetParameterName("sm", false, false) << 109 fSmCmd->SetDefaultUnit("keV"); << 110 fSmCmd->SetRange("sm>0."); << 111 fSmCmd->AvailableForStates(G4State_PreInit, << 112 } 79 } 113 80 114 //....oooOO0OOooo........oooOO0OOooo........oo 81 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 115 82 116 PhysicsListMessenger::~PhysicsListMessenger() 83 PhysicsListMessenger::~PhysicsListMessenger() 117 { 84 { 118 delete fECmd; << 85 delete eCmd; 119 delete fEBCmd; << 86 delete ebCmd; 120 delete fCBCmd; << 87 delete cbCmd; 121 delete fCMCmd; << 88 delete pListCmd; 122 delete fListCmd; << 123 delete fADCCmd; << 124 delete fNorCmd; << 125 delete fSmCmd; << 126 delete fPhysDir; << 127 } 89 } 128 90 129 //....oooOO0OOooo........oooOO0OOooo........oo 91 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 130 92 131 void PhysicsListMessenger::SetNewValue(G4UIcom << 93 void PhysicsListMessenger::SetNewValue(G4UIcommand* command, 132 { << 94 G4String newValue) 133 TestParameters* man = TestParameters::GetPoi << 95 { >> 96 HistoManager* man = HistoManager::GetPointer(); >> 97 if( command == eCmd ) >> 98 { man->SetMaxEnergy(eCmd->GetNewDoubleValue(newValue));} >> 99 >> 100 if( command == ebCmd ) >> 101 { man->SetNumberBins(ebCmd->GetNewIntValue(newValue));} >> 102 >> 103 if( command == cbCmd ) >> 104 { man->SetNumberBinsCluster(cbCmd->GetNewIntValue(newValue));} 134 105 135 if (command == fECmd) { << 106 if( command == pListCmd ) 136 man->SetMaxEnergy(fECmd->GetNewDoubleValue << 107 { pPhysicsList->AddPhysicsList(newValue);} 137 } << 138 if (command == fEBCmd) { << 139 man->SetNumberBins(fEBCmd->GetNewIntValue( << 140 } << 141 if (command == fCBCmd) { << 142 man->SetNumberBinsCluster(fCBCmd->GetNewIn << 143 } << 144 if (command == fCMCmd) { << 145 man->SetMaxCluster(fCMCmd->GetNewIntValue( << 146 } << 147 if (command == fListCmd) { << 148 fPhysicsList->AddPhysicsList(newValue); << 149 } << 150 if (command == fADCCmd) { << 151 man->SetEnergyPerChannel(fADCCmd->GetNewDo << 152 } << 153 if (command == fNorCmd) { << 154 man->SetNormFactor(fNorCmd->GetNewDoubleVa << 155 } << 156 if (command == fSmCmd) { << 157 man->SetEnergySmear(fSmCmd->GetNewDoubleVa << 158 } << 159 } 108 } 160 109 161 //....oooOO0OOooo........oooOO0OOooo........oo 110 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 162 111