File indexing completed on 2025-02-23 09:21:54
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 #include "DetectorMessenger.hh"
0040
0041 #include "DetectorConstruction.hh"
0042 #include "PhysicsList.hh"
0043
0044 #include "G4UIcmdWithABool.hh"
0045 #include "G4UIcmdWithAString.hh"
0046 #include "G4UIcmdWithoutParameter.hh"
0047 #include "G4UIcommand.hh"
0048 #include "G4UIdirectory.hh"
0049 #include "G4UIparameter.hh"
0050
0051
0052
0053 DetectorMessenger::DetectorMessenger(DetectorConstruction* Det, PhysicsList* PL)
0054 : G4UImessenger(), fpDetector(Det), fpPhysList(PL)
0055 {
0056 fpDetDir = new G4UIdirectory("/dna/test/");
0057 fpDetDir->SetGuidance("dna test commands");
0058
0059 fpMaterCmd = new G4UIcmdWithAString("/dna/test/setMat", this);
0060 fpMaterCmd->SetGuidance("Select material of the world.");
0061 fpMaterCmd->SetParameterName("Material", false);
0062 fpMaterCmd->AvailableForStates(G4State_PreInit, G4State_Idle);
0063 fpMaterCmd->SetToBeBroadcasted(false);
0064
0065 fpPhysCmd = new G4UIcmdWithAString("/dna/test/addPhysics", this);
0066 fpPhysCmd->SetGuidance("Added Physics List");
0067 fpPhysCmd->SetParameterName("Physics", false);
0068 fpPhysCmd->AvailableForStates(G4State_PreInit);
0069 fpPhysCmd->SetToBeBroadcasted(false);
0070
0071 fpTrackingCutCmd = new G4UIcmdWithABool("/dna/test/addIonsTrackingCut", this);
0072 fpTrackingCutCmd->SetGuidance("Added Ions Tracking Cut");
0073 fpTrackingCutCmd->SetDefaultValue(false);
0074 fpTrackingCutCmd->AvailableForStates(G4State_PreInit);
0075 fpTrackingCutCmd->SetToBeBroadcasted(false);
0076 }
0077
0078
0079
0080 DetectorMessenger::~DetectorMessenger()
0081 {
0082 delete fpDetDir;
0083
0084 delete fpMaterCmd;
0085 delete fpPhysCmd;
0086 delete fpTrackingCutCmd;
0087 }
0088
0089
0090
0091 void DetectorMessenger::SetNewValue(G4UIcommand* command, G4String newValue)
0092 {
0093 if (command == fpMaterCmd) fpDetector->SetMaterial(newValue);
0094
0095 if (command == fpPhysCmd) fpPhysList->AddPhysics(newValue);
0096
0097 if (command == fpTrackingCutCmd)
0098 fpPhysList->SetTrackingCut(fpTrackingCutCmd->GetNewBoolValue(newValue));
0099 }