File indexing completed on 2025-04-04 08:05:15
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 #include "DetectorMessenger.hh"
0034
0035 #include "DetectorConstruction.hh"
0036
0037 #include "G4UIcmdWithADoubleAndUnit.hh"
0038 #include "G4UIcmdWithAnInteger.hh"
0039 #include "G4UIcmdWithoutParameter.hh"
0040 #include "G4UIcommand.hh"
0041 #include "G4UIdirectory.hh"
0042 #include "G4UIparameter.hh"
0043
0044 #include <sstream>
0045
0046
0047
0048 DetectorMessenger::DetectorMessenger(DetectorConstruction* Det) : fDetector(Det)
0049 {
0050 fTestemDir = new G4UIdirectory("/testhadr/");
0051 fTestemDir->SetGuidance("UI commands specific to this example");
0052
0053 fDetDir = new G4UIdirectory("/testhadr/det/");
0054 fDetDir->SetGuidance("detector construction commands");
0055
0056 fSizeYZCmd = new G4UIcmdWithADoubleAndUnit("/testhadr/det/setSizeYZ", this);
0057 fSizeYZCmd->SetGuidance("Set tranverse size of the calorimeter");
0058 fSizeYZCmd->SetParameterName("Size", false);
0059 fSizeYZCmd->SetRange("Size>0.");
0060 fSizeYZCmd->SetUnitCategory("Length");
0061 fSizeYZCmd->AvailableForStates(G4State_PreInit);
0062 fSizeYZCmd->SetToBeBroadcasted(false);
0063
0064 fNbLayersCmd = new G4UIcmdWithAnInteger("/testhadr/det/setNbOfLayers", this);
0065 fNbLayersCmd->SetGuidance("Set number of layers.");
0066 fNbLayersCmd->SetParameterName("NbLayers", false);
0067 fNbLayersCmd->SetRange("NbLayers>0");
0068 fNbLayersCmd->AvailableForStates(G4State_PreInit);
0069 fNbLayersCmd->SetToBeBroadcasted(false);
0070
0071 fNbAbsorCmd = new G4UIcmdWithAnInteger("/testhadr/det/setNbOfAbsor", this);
0072 fNbAbsorCmd->SetGuidance("Set number of Absorbers.");
0073 fNbAbsorCmd->SetParameterName("NbAbsor", false);
0074 fNbAbsorCmd->SetRange("NbAbsor>0");
0075 fNbAbsorCmd->AvailableForStates(G4State_PreInit);
0076 fNbAbsorCmd->SetToBeBroadcasted(false);
0077
0078 fAbsorCmd = new G4UIcommand("/testhadr/det/setAbsor", this);
0079 fAbsorCmd->SetGuidance("Set the absor nb, the material, the thickness.");
0080 fAbsorCmd->SetGuidance(" absor number : from 1 to NbOfAbsor");
0081 fAbsorCmd->SetGuidance(" material name");
0082 fAbsorCmd->SetGuidance(" thickness (with unit) : t>0.");
0083
0084 G4UIparameter* AbsNbPrm = new G4UIparameter("AbsorNb", 'i', false);
0085 AbsNbPrm->SetGuidance("absor number : from 1 to NbOfAbsor");
0086 AbsNbPrm->SetParameterRange("AbsorNb>0");
0087 fAbsorCmd->SetParameter(AbsNbPrm);
0088
0089 G4UIparameter* MatPrm = new G4UIparameter("material", 's', false);
0090 MatPrm->SetGuidance("material name");
0091 fAbsorCmd->SetParameter(MatPrm);
0092
0093 G4UIparameter* ThickPrm = new G4UIparameter("thickness", 'd', false);
0094 ThickPrm->SetGuidance("thickness of absorber");
0095 ThickPrm->SetParameterRange("thickness>0.");
0096 fAbsorCmd->SetParameter(ThickPrm);
0097
0098 G4UIparameter* unitPrm = new G4UIparameter("unit", 's', false);
0099 unitPrm->SetGuidance("unit of thickness");
0100 G4String unitList = G4UIcommand::UnitsList(G4UIcommand::CategoryOf("mm"));
0101 unitPrm->SetParameterCandidates(unitList);
0102 fAbsorCmd->SetParameter(unitPrm);
0103
0104 fAbsorCmd->AvailableForStates(G4State_PreInit);
0105 fAbsorCmd->SetToBeBroadcasted(false);
0106
0107 fIsotopeCmd = new G4UIcommand("/testhadr/det/setIsotopeMat", this);
0108 fIsotopeCmd->SetGuidance("Build and select a material with single isotope");
0109 fIsotopeCmd->SetGuidance(" symbol of isotope, Z, A, density of material");
0110
0111 G4UIparameter* symbPrm = new G4UIparameter("isotope", 's', false);
0112 symbPrm->SetGuidance("isotope symbol");
0113 fIsotopeCmd->SetParameter(symbPrm);
0114
0115 G4UIparameter* ZPrm = new G4UIparameter("Z", 'i', false);
0116 ZPrm->SetGuidance("Z");
0117 ZPrm->SetParameterRange("Z>0");
0118 fIsotopeCmd->SetParameter(ZPrm);
0119
0120 G4UIparameter* APrm = new G4UIparameter("A", 'i', false);
0121 APrm->SetGuidance("A");
0122 APrm->SetParameterRange("A>0");
0123 fIsotopeCmd->SetParameter(APrm);
0124
0125 G4UIparameter* densityPrm = new G4UIparameter("density", 'd', false);
0126 densityPrm->SetGuidance("density of material");
0127 densityPrm->SetParameterRange("density>0.");
0128 fIsotopeCmd->SetParameter(densityPrm);
0129
0130 G4UIparameter* unitPrm1 = new G4UIparameter("unit", 's', false);
0131 unitPrm1->SetGuidance("unit of density");
0132 G4String unitList1 = G4UIcommand::UnitsList(G4UIcommand::CategoryOf("g/cm3"));
0133 unitPrm1->SetParameterCandidates(unitList1);
0134 fIsotopeCmd->SetParameter(unitPrm1);
0135
0136 fIsotopeCmd->AvailableForStates(G4State_PreInit, G4State_Idle);
0137 }
0138
0139
0140
0141 DetectorMessenger::~DetectorMessenger()
0142 {
0143 delete fSizeYZCmd;
0144 delete fNbLayersCmd;
0145 delete fNbAbsorCmd;
0146 delete fAbsorCmd;
0147 delete fIsotopeCmd;
0148 delete fDetDir;
0149 delete fTestemDir;
0150 }
0151
0152
0153
0154 void DetectorMessenger::SetNewValue(G4UIcommand* command, G4String newValue)
0155 {
0156 if (command == fSizeYZCmd) {
0157 fDetector->SetCalorSizeYZ(fSizeYZCmd->GetNewDoubleValue(newValue));
0158 }
0159
0160 if (command == fNbLayersCmd) {
0161 fDetector->SetNbOfLayers(fNbLayersCmd->GetNewIntValue(newValue));
0162 }
0163
0164 if (command == fNbAbsorCmd) {
0165 fDetector->SetNbOfAbsor(fNbAbsorCmd->GetNewIntValue(newValue));
0166 }
0167
0168 if (command == fAbsorCmd) {
0169 G4int num;
0170 G4double tick;
0171 G4String unt, mat;
0172 std::istringstream is(newValue);
0173 is >> num >> mat >> tick >> unt;
0174 G4String material = mat;
0175 tick *= G4UIcommand::ValueOf(unt);
0176 fDetector->SetAbsorMaterial(num, material);
0177 fDetector->SetAbsorThickness(num, tick);
0178 }
0179
0180 if (command == fIsotopeCmd) {
0181 G4int Z;
0182 G4int A;
0183 G4double dens;
0184 G4String name, unt;
0185 std::istringstream is(newValue);
0186 is >> name >> Z >> A >> dens >> unt;
0187 dens *= G4UIcommand::ValueOf(unt);
0188 fDetector->MaterialWithSingleIsotope(name, name, dens, Z, A);
0189 }
0190 }
0191
0192