File indexing completed on 2025-04-04 08:04:42
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026
0027
0028
0029
0030
0031
0032
0033
0034
0035
0036
0037
0038
0039
0040
0041
0042
0043
0044 #include "PhysicsListMessenger.hh"
0045
0046 #include "PhysicsList.hh"
0047 #include "TestParameters.hh"
0048
0049 #include "G4UIcmdWithADouble.hh"
0050 #include "G4UIcmdWithADoubleAndUnit.hh"
0051 #include "G4UIcmdWithAString.hh"
0052 #include "G4UIcmdWithAnInteger.hh"
0053 #include "G4UIdirectory.hh"
0054
0055
0056
0057 PhysicsListMessenger::PhysicsListMessenger(PhysicsList* pPhys) : fPhysicsList(pPhys)
0058 {
0059 fPhysDir = new G4UIdirectory("/testem/phys/");
0060 fPhysDir->SetGuidance("physics list commands");
0061
0062 fECmd = new G4UIcmdWithADoubleAndUnit("/testem/phys/setMaxE", this);
0063 fECmd->SetGuidance("Set max energy deposit");
0064 fECmd->SetParameterName("Emax", false);
0065 fECmd->SetUnitCategory("Energy");
0066 fECmd->SetRange("Emax>0.0");
0067 fECmd->AvailableForStates(G4State_PreInit, G4State_Idle);
0068
0069 fEBCmd = new G4UIcmdWithAnInteger("/testem/phys/setNbinsE", this);
0070 fEBCmd->SetGuidance("Set number of bins in energy.");
0071 fEBCmd->SetParameterName("Ebins", false);
0072 fEBCmd->SetRange("Ebins>0");
0073 fEBCmd->AvailableForStates(G4State_PreInit, G4State_Idle);
0074
0075 fCBCmd = new G4UIcmdWithAnInteger("/testem/phys/setNbinsCl", this);
0076 fCBCmd->SetGuidance("Set number of bins of clusters.");
0077 fCBCmd->SetParameterName("Cbins", false);
0078 fCBCmd->SetRange("Cbins>0");
0079 fCBCmd->AvailableForStates(G4State_PreInit, G4State_Idle);
0080
0081 fCMCmd = new G4UIcmdWithAnInteger("/testem/phys/setMaxCl", this);
0082 fCMCmd->SetGuidance("Set max number of clusters.");
0083 fCMCmd->SetParameterName("Cmax", false);
0084 fCMCmd->SetRange("Cmax>0");
0085 fCMCmd->AvailableForStates(G4State_PreInit, G4State_Idle);
0086
0087 fListCmd = new G4UIcmdWithAString("/testem/phys/addPhysics", this);
0088 fListCmd->SetGuidance("Add modula physics list.");
0089 fListCmd->SetParameterName("PList", false);
0090 fListCmd->AvailableForStates(G4State_PreInit);
0091
0092 fADCCmd = new G4UIcmdWithADoubleAndUnit("/testem/phys/setEnergyPerChannel", this);
0093 fADCCmd->SetGuidance("Set energy per ADC channel");
0094 fADCCmd->SetParameterName("enadc", false, false);
0095 fADCCmd->SetUnitCategory("Energy");
0096 fADCCmd->SetDefaultUnit("keV");
0097 fADCCmd->SetRange("enadc>0.");
0098 fADCCmd->AvailableForStates(G4State_PreInit, G4State_Idle);
0099
0100 fNorCmd = new G4UIcmdWithADouble("/testem/phys/setNormFactor", this);
0101 fNorCmd->SetGuidance("Set factor for histogram normalisation");
0102 fNorCmd->SetParameterName("nfac", false, false);
0103 fNorCmd->SetRange("nfac>0.");
0104 fNorCmd->AvailableForStates(G4State_PreInit, G4State_Idle);
0105
0106 fSmCmd = new G4UIcmdWithADoubleAndUnit("/testem/phys/setEnergySmear", this);
0107 fSmCmd->SetGuidance("Set intrinsic width of detector response");
0108 fSmCmd->SetParameterName("sm", false, false);
0109 fSmCmd->SetDefaultUnit("keV");
0110 fSmCmd->SetRange("sm>0.");
0111 fSmCmd->AvailableForStates(G4State_PreInit, G4State_Idle);
0112 }
0113
0114
0115
0116 PhysicsListMessenger::~PhysicsListMessenger()
0117 {
0118 delete fECmd;
0119 delete fEBCmd;
0120 delete fCBCmd;
0121 delete fCMCmd;
0122 delete fListCmd;
0123 delete fADCCmd;
0124 delete fNorCmd;
0125 delete fSmCmd;
0126 delete fPhysDir;
0127 }
0128
0129
0130
0131 void PhysicsListMessenger::SetNewValue(G4UIcommand* command, G4String newValue)
0132 {
0133 TestParameters* man = TestParameters::GetPointer();
0134
0135 if (command == fECmd) {
0136 man->SetMaxEnergy(fECmd->GetNewDoubleValue(newValue));
0137 }
0138 if (command == fEBCmd) {
0139 man->SetNumberBins(fEBCmd->GetNewIntValue(newValue));
0140 }
0141 if (command == fCBCmd) {
0142 man->SetNumberBinsCluster(fCBCmd->GetNewIntValue(newValue));
0143 }
0144 if (command == fCMCmd) {
0145 man->SetMaxCluster(fCMCmd->GetNewIntValue(newValue));
0146 }
0147 if (command == fListCmd) {
0148 fPhysicsList->AddPhysicsList(newValue);
0149 }
0150 if (command == fADCCmd) {
0151 man->SetEnergyPerChannel(fADCCmd->GetNewDoubleValue(newValue));
0152 }
0153 if (command == fNorCmd) {
0154 man->SetNormFactor(fNorCmd->GetNewDoubleValue(newValue));
0155 }
0156 if (command == fSmCmd) {
0157 man->SetEnergySmear(fSmCmd->GetNewDoubleValue(newValue));
0158 }
0159 }
0160
0161