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 #include "DetectorMessenger.hh"
0044
0045 #include "DetectorConstruction.hh"
0046
0047 #include "G4UIcmdWithADoubleAndUnit.hh"
0048 #include "G4UIcmdWithAString.hh"
0049 #include "G4UIcmdWithoutParameter.hh"
0050 #include "G4UIdirectory.hh"
0051
0052
0053
0054 DetectorMessenger::DetectorMessenger(DetectorConstruction* det) : fDetector(det)
0055 {
0056 fDetDir = new G4UIdirectory("/testem/");
0057 fDetDir->SetGuidance("Detector control.");
0058
0059 fGasMaterCmd = new G4UIcmdWithAString("/testem/setGasMat", this);
0060 fGasMaterCmd->SetGuidance("Select material of the detector.");
0061 fGasMaterCmd->SetParameterName("gmat", true);
0062 fGasMaterCmd->SetDefaultValue("Argon");
0063 fGasMaterCmd->AvailableForStates(G4State_PreInit, G4State_Idle);
0064
0065 fWindowMaterCmd = new G4UIcmdWithAString("/testem/setWindowMat", this);
0066 fWindowMaterCmd->SetGuidance("Select material of the window.");
0067 fWindowMaterCmd->SetParameterName("wmat", true);
0068 fWindowMaterCmd->SetDefaultValue("Mylar");
0069 fWindowMaterCmd->AvailableForStates(G4State_PreInit, G4State_Idle);
0070
0071 fWorldMaterCmd = new G4UIcmdWithAString("/testem/setWorldMat", this);
0072 fWorldMaterCmd->SetGuidance("Select material of the world.");
0073 fWorldMaterCmd->SetParameterName("worldmat", true);
0074 fWorldMaterCmd->SetDefaultValue("empty");
0075 fWorldMaterCmd->AvailableForStates(G4State_PreInit, G4State_Idle);
0076
0077 fGasThickCmd = new G4UIcmdWithADoubleAndUnit("/testem/setGasThick", this);
0078 fGasThickCmd->SetGuidance("Set thickness of the detector");
0079 fGasThickCmd->SetParameterName("SizeZ", false, false);
0080 fGasThickCmd->SetUnitCategory("Length");
0081 fGasThickCmd->SetDefaultUnit("mm");
0082 fGasThickCmd->SetRange("SizeZ>0.");
0083 fGasThickCmd->AvailableForStates(G4State_PreInit, G4State_Idle);
0084
0085 fGasRadCmd = new G4UIcmdWithADoubleAndUnit("/testem/setGasRad", this);
0086 fGasRadCmd->SetGuidance("Set radius of the detector");
0087 fGasRadCmd->SetParameterName("SizeR", false, false);
0088 fGasRadCmd->SetUnitCategory("Length");
0089 fGasRadCmd->SetDefaultUnit("mm");
0090 fGasRadCmd->SetRange("SizeR>0.");
0091 fGasRadCmd->AvailableForStates(G4State_PreInit, G4State_Idle);
0092
0093 fWinThickCmd = new G4UIcmdWithADoubleAndUnit("/testem/setWindowThick", this);
0094 fWinThickCmd->SetGuidance("Set thickness of the window");
0095 fWinThickCmd->SetParameterName("delta", false, false);
0096 fWinThickCmd->SetUnitCategory("Length");
0097 fWinThickCmd->SetDefaultUnit("mm");
0098 fWinThickCmd->SetRange("delta>0.");
0099 fWinThickCmd->AvailableForStates(G4State_PreInit, G4State_Idle);
0100
0101 fIonCmd = new G4UIcmdWithADoubleAndUnit("/testem/setPairEnergy", this);
0102 fIonCmd->SetGuidance("Set energy per electron-ion pair for detector");
0103 fIonCmd->SetParameterName("en", false, false);
0104 fIonCmd->SetUnitCategory("Energy");
0105 fIonCmd->SetDefaultUnit("MeV");
0106 fIonCmd->SetRange("en>0.");
0107 fIonCmd->AvailableForStates(G4State_PreInit, G4State_Idle);
0108
0109 fStepMaxCmd = new G4UIcmdWithADoubleAndUnit("/testem/stepMax", this);
0110 fStepMaxCmd->SetGuidance("Set max allowed step length for charged particles");
0111 fStepMaxCmd->SetParameterName("mxStep", false);
0112 fStepMaxCmd->SetRange("mxStep>0.");
0113 fStepMaxCmd->SetUnitCategory("Length");
0114 fStepMaxCmd->AvailableForStates(G4State_PreInit, G4State_Idle);
0115 }
0116
0117
0118
0119 DetectorMessenger::~DetectorMessenger()
0120 {
0121 delete fGasMaterCmd;
0122 delete fGasThickCmd;
0123 delete fGasRadCmd;
0124 delete fWinThickCmd;
0125 delete fWindowMaterCmd;
0126 delete fWorldMaterCmd;
0127 delete fIonCmd;
0128 delete fStepMaxCmd;
0129 delete fDetDir;
0130 }
0131
0132
0133
0134 void DetectorMessenger::SetNewValue(G4UIcommand* command, G4String newValue)
0135 {
0136 if (command == fGasMaterCmd) {
0137 fDetector->SetGasMaterial(newValue);
0138 }
0139 else if (command == fWindowMaterCmd) {
0140 fDetector->SetContainerMaterial(newValue);
0141 }
0142 else if (command == fWorldMaterCmd) {
0143 fDetector->SetWorldMaterial(newValue);
0144 }
0145 else if (command == fGasThickCmd) {
0146 fDetector->SetGasThickness(fGasThickCmd->GetNewDoubleValue(newValue));
0147 }
0148 else if (command == fGasRadCmd) {
0149 fDetector->SetGasRadius(fGasRadCmd->GetNewDoubleValue(newValue));
0150 }
0151 else if (command == fWinThickCmd) {
0152 fDetector->SetContainerThickness(fWinThickCmd->GetNewDoubleValue(newValue));
0153 }
0154 else if (command == fStepMaxCmd) {
0155 fDetector->SetMaxChargedStep(fStepMaxCmd->GetNewDoubleValue(newValue));
0156 }
0157 else if (command == fIonCmd) {
0158 fDetector->SetPairEnergy(fIonCmd->GetNewDoubleValue(newValue));
0159 }
0160 }
0161
0162