File indexing completed on 2025-04-04 08:05:14
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 "G4UIcmdWithAString.hh"
0039 #include "G4UIcmdWithoutParameter.hh"
0040 #include "G4UIcommand.hh"
0041 #include "G4UIdirectory.hh"
0042 #include "G4UIparameter.hh"
0043
0044
0045
0046 DetectorMessenger::DetectorMessenger(DetectorConstruction* Det) : fDetector(Det)
0047 {
0048 fTesthadDir = new G4UIdirectory("/testhadr/");
0049 fTesthadDir->SetGuidance("commands specific to this example");
0050
0051 fDetDir = new G4UIdirectory("/testhadr/det/");
0052 fDetDir->SetGuidance("detector construction commands");
0053
0054 fMaterCmd = new G4UIcmdWithAString("/testhadr/det/setMat", this);
0055 fMaterCmd->SetGuidance("Select material of the box.");
0056 fMaterCmd->SetParameterName("choice", false);
0057 fMaterCmd->AvailableForStates(G4State_PreInit, G4State_Idle);
0058 fMaterCmd->SetToBeBroadcasted(false);
0059
0060 fSizeCmd = new G4UIcmdWithADoubleAndUnit("/testhadr/det/setSize", this);
0061 fSizeCmd->SetGuidance("Set size of the box");
0062 fSizeCmd->SetParameterName("Size", false);
0063 fSizeCmd->SetRange("Size>0.");
0064 fSizeCmd->SetUnitCategory("Length");
0065 fSizeCmd->AvailableForStates(G4State_PreInit, G4State_Idle);
0066 fSizeCmd->SetToBeBroadcasted(false);
0067
0068 fIsotopeCmd = new G4UIcommand("/testhadr/det/setIsotopeMat", this);
0069 fIsotopeCmd->SetGuidance("Build and select a material with single isotope");
0070 fIsotopeCmd->SetGuidance(" symbol of isotope, Z, A, density of material");
0071
0072 G4UIparameter* symbPrm = new G4UIparameter("isotope", 's', false);
0073 symbPrm->SetGuidance("isotope symbol");
0074 fIsotopeCmd->SetParameter(symbPrm);
0075
0076 G4UIparameter* ZPrm = new G4UIparameter("Z", 'i', false);
0077 ZPrm->SetGuidance("Z");
0078 ZPrm->SetParameterRange("Z>0");
0079 fIsotopeCmd->SetParameter(ZPrm);
0080
0081 G4UIparameter* APrm = new G4UIparameter("A", 'i', false);
0082 APrm->SetGuidance("A");
0083 APrm->SetParameterRange("A>0");
0084 fIsotopeCmd->SetParameter(APrm);
0085
0086 G4UIparameter* densityPrm = new G4UIparameter("density", 'd', false);
0087 densityPrm->SetGuidance("density of material");
0088 densityPrm->SetParameterRange("density>0.");
0089 fIsotopeCmd->SetParameter(densityPrm);
0090
0091 G4UIparameter* unitPrm = new G4UIparameter("unit", 's', false);
0092 unitPrm->SetGuidance("unit of density");
0093 G4String unitList = G4UIcommand::UnitsList(G4UIcommand::CategoryOf("g/cm3"));
0094 unitPrm->SetParameterCandidates(unitList);
0095 fIsotopeCmd->SetParameter(unitPrm);
0096
0097 fIsotopeCmd->AvailableForStates(G4State_PreInit, G4State_Idle);
0098 fIsotopeCmd->SetToBeBroadcasted(false);
0099 }
0100
0101
0102
0103 DetectorMessenger::~DetectorMessenger()
0104 {
0105 delete fMaterCmd;
0106 delete fSizeCmd;
0107 delete fIsotopeCmd;
0108 delete fDetDir;
0109 delete fTesthadDir;
0110 }
0111
0112
0113
0114 void DetectorMessenger::SetNewValue(G4UIcommand* command, G4String newValue)
0115 {
0116 if (command == fMaterCmd) {
0117 fDetector->SetMaterial(newValue);
0118 }
0119
0120 if (command == fSizeCmd) {
0121 fDetector->SetSize(fSizeCmd->GetNewDoubleValue(newValue));
0122 }
0123
0124 if (command == fIsotopeCmd) {
0125 G4int Z;
0126 G4int A;
0127 G4double dens;
0128 G4String name, unt;
0129 std::istringstream is(newValue);
0130 is >> name >> Z >> A >> dens >> unt;
0131 dens *= G4UIcommand::ValueOf(unt);
0132 fDetector->MaterialWithSingleIsotope(name, name, dens, Z, A);
0133 fDetector->SetMaterial(name);
0134 }
0135 }
0136
0137