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