File indexing completed on 2025-04-04 08:05:04
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 #include "HistoManager.hh"
0047
0048 #include "G4RadioactiveDecayPhysics.hh"
0049 #include "G4UIcmdWith3Vector.hh"
0050 #include "G4UIcmdWithABool.hh"
0051 #include "G4UIcmdWithADoubleAndUnit.hh"
0052 #include "G4UIcmdWithAString.hh"
0053 #include "G4UIcmdWithAnInteger.hh"
0054 #include "G4UIcmdWithoutParameter.hh"
0055 #include "G4UIdirectory.hh"
0056 #include "G4VModularPhysicsList.hh"
0057
0058
0059
0060 DetectorMessenger::DetectorMessenger(DetectorConstruction* Det) : G4UImessenger(), fDetector(Det)
0061 {
0062 ftestDir = new G4UIdirectory("/testhadr/");
0063 ftestDir->SetGuidance(" Hadronic Extended Example.");
0064
0065 fmatCmd = new G4UIcmdWithAString("/testhadr/TargetMat", this);
0066 fmatCmd->SetGuidance("Select Material for the target");
0067 fmatCmd->SetParameterName("tMaterial", false);
0068 fmatCmd->AvailableForStates(G4State_PreInit, G4State_Idle);
0069 fmatCmd->SetToBeBroadcasted(false);
0070
0071 fmat1Cmd = new G4UIcmdWithAString("/testhadr/WorldMat", this);
0072 fmat1Cmd->SetGuidance("Select Material for world");
0073 fmat1Cmd->SetParameterName("wMaterial", false);
0074 fmat1Cmd->AvailableForStates(G4State_PreInit, G4State_Idle);
0075 fmat1Cmd->SetToBeBroadcasted(false);
0076
0077 fRDCmd = new G4UIcmdWithABool("/testhadr/RadDecay", this);
0078 fRDCmd->SetGuidance("Enable radioactive decay");
0079 fRDCmd->SetParameterName("RD", false);
0080 fRDCmd->AvailableForStates(G4State_PreInit);
0081 fRDCmd->SetToBeBroadcasted(false);
0082
0083 frCmd = new G4UIcmdWithADoubleAndUnit("/testhadr/TargetRadius", this);
0084 frCmd->SetGuidance("Set radius of the target");
0085 frCmd->SetParameterName("radius", false);
0086 frCmd->SetUnitCategory("Length");
0087 frCmd->SetRange("radius>0");
0088 frCmd->AvailableForStates(G4State_PreInit, G4State_Idle);
0089 frCmd->SetToBeBroadcasted(false);
0090
0091 flCmd = new G4UIcmdWithADoubleAndUnit("/testhadr/TargetLength", this);
0092 flCmd->SetGuidance("Set length of the target");
0093 flCmd->SetParameterName("length", false);
0094 flCmd->SetUnitCategory("Length");
0095 flCmd->SetRange("length>0");
0096 flCmd->AvailableForStates(G4State_PreInit, G4State_Idle);
0097 flCmd->SetToBeBroadcasted(false);
0098 }
0099
0100
0101
0102 DetectorMessenger::~DetectorMessenger()
0103 {
0104 delete fmatCmd;
0105 delete fmat1Cmd;
0106 delete fRDCmd;
0107 delete frCmd;
0108 delete flCmd;
0109 delete ftestDir;
0110 }
0111
0112
0113
0114 void DetectorMessenger::SetNewValue(G4UIcommand* command, G4String newValue)
0115 {
0116 if (command == fmatCmd) {
0117 fDetector->SetTargetMaterial(newValue);
0118 }
0119 else if (command == fmat1Cmd) {
0120 fDetector->SetWorldMaterial(newValue);
0121 }
0122 else if (command == frCmd) {
0123 fDetector->SetTargetRadius(frCmd->GetNewDoubleValue(newValue));
0124 }
0125 else if (command == flCmd) {
0126 fDetector->SetTargetLength(flCmd->GetNewDoubleValue(newValue));
0127 }
0128 else if (command == fRDCmd) {
0129 if (fRDCmd->GetNewBoolValue(newValue)) {
0130 fDetector->GetPhysicsList()->RegisterPhysics(new G4RadioactiveDecayPhysics(1));
0131 }
0132 }
0133 }
0134
0135