Geant4 Cross Reference |
1 // 2 // ******************************************************************** 3 // * License and Disclaimer * 4 // * * 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. * 10 // * * 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitation of liability. * 17 // * * 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************************************** 25 // 26 /// \file DetectorMessenger.cc 27 /// \brief Implementation of the DetectorMessenger class 28 // 29 // 30 31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 33 34 #include "DetectorMessenger.hh" 35 36 #include "DetectorConstruction.hh" 37 38 #include "G4UIcmdWithADoubleAndUnit.hh" 39 #include "G4UIcmdWithAString.hh" 40 #include "G4UIcmdWithoutParameter.hh" 41 #include "G4UIdirectory.hh" 42 #include "globals.hh" 43 44 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 45 46 DetectorMessenger::DetectorMessenger(DetectorConstruction* myDet) : fDetector(myDet) 47 { 48 fDetectorDir = new G4UIdirectory("/mydet/"); 49 fDetectorDir->SetGuidance("Detector control."); 50 51 fMaterialTracker = new G4UIcmdWithAString("/mydet/material_tracker", this); 52 fMaterialTracker->SetGuidance("Choice of the material for the Tracker:"); 53 fMaterialTracker->SetGuidance(" a Geant4 NIST material, e.g. G4_Si "); 54 fMaterialTracker->SetParameterName("choiceMaterial", true); 55 fMaterialTracker->SetDefaultValue("G4_Si"); 56 fMaterialTracker->AvailableForStates(G4State_PreInit, G4State_Idle); 57 58 fMaterialEmCalo = new G4UIcmdWithAString("/mydet/material_emCalo", this); 59 fMaterialEmCalo->SetGuidance("Choice of the material for the EM calo:"); 60 fMaterialEmCalo->SetGuidance(" a Geant4 NIST material, e.g. G4_Pb "); 61 fMaterialEmCalo->SetParameterName("choiceMaterial", true); 62 fMaterialEmCalo->SetDefaultValue("G4_Pb"); 63 fMaterialEmCalo->AvailableForStates(G4State_PreInit, G4State_Idle); 64 65 fMaterialHadCalo = new G4UIcmdWithAString("/mydet/material_hadCalo", this); 66 fMaterialHadCalo->SetGuidance("Choice of the material for the HAD calo:"); 67 fMaterialHadCalo->SetGuidance(" a Geant4 NIST material, e.g. G4_Fe "); 68 fMaterialHadCalo->SetParameterName("choiceMaterial", true); 69 fMaterialHadCalo->SetDefaultValue("G4_Fe"); 70 fMaterialHadCalo->AvailableForStates(G4State_PreInit, G4State_Idle); 71 72 fInnerRadiusTracker = new G4UIcmdWithADoubleAndUnit("/mydet/inner_radius_tracker", this); 73 fInnerRadiusTracker->SetParameterName("choiceInnerRadiusTracker", true); 74 fInnerRadiusTracker->SetGuidance("Inner radius of the Tracker"); 75 fInnerRadiusTracker->SetDefaultValue(100.0); // default: 10 cm. 76 fInnerRadiusTracker->AvailableForStates(G4State_PreInit, G4State_Idle); 77 78 fOuterRadiusTracker = new G4UIcmdWithADoubleAndUnit("/mydet/outer_radius_tracker", this); 79 fOuterRadiusTracker->SetParameterName("choiceOuterRadiusTracker", true); 80 fOuterRadiusTracker->SetGuidance("Outer radius of the Tracker"); 81 fOuterRadiusTracker->SetDefaultValue(200.0); // default: 20 cm. 82 fOuterRadiusTracker->AvailableForStates(G4State_PreInit, G4State_Idle); 83 84 fInnerRadiusEmCalo = new G4UIcmdWithADoubleAndUnit("/mydet/inner_radius_emCalo", this); 85 fInnerRadiusEmCalo->SetParameterName("choiceInnerRadiusEmCalo", true); 86 fInnerRadiusEmCalo->SetGuidance("Inner radius of the EM Calo"); 87 fInnerRadiusEmCalo->SetDefaultValue(300.0); // default: 30 cm. 88 fInnerRadiusEmCalo->AvailableForStates(G4State_PreInit, G4State_Idle); 89 90 fOuterRadiusEmCalo = new G4UIcmdWithADoubleAndUnit("/mydet/outer_radius_emCalo", this); 91 fOuterRadiusEmCalo->SetParameterName("choiceOuterRadiusEmCalo", true); 92 fOuterRadiusEmCalo->SetGuidance("Outer radius of the EM Calo"); 93 fOuterRadiusEmCalo->SetDefaultValue(600.0); // default: 60 cm. 94 fOuterRadiusEmCalo->AvailableForStates(G4State_PreInit, G4State_Idle); 95 96 fInnerRadiusHadCalo = new G4UIcmdWithADoubleAndUnit("/mydet/inner_radius_hadCalo", this); 97 fInnerRadiusHadCalo->SetParameterName("choiceInnerRadiusHadCalo", true); 98 fInnerRadiusHadCalo->SetGuidance("Inner radius of the HAD Calo"); 99 fInnerRadiusHadCalo->SetDefaultValue(700.0); // default: 70 cm. 100 fInnerRadiusHadCalo->AvailableForStates(G4State_PreInit, G4State_Idle); 101 102 fOuterRadiusHadCalo = new G4UIcmdWithADoubleAndUnit("/mydet/outer_radius_hadCalo", this); 103 fOuterRadiusHadCalo->SetParameterName("choiceOuterRadiusHadCalo", true); 104 fOuterRadiusHadCalo->SetGuidance("Outer radius of the HAD Calo"); 105 fOuterRadiusHadCalo->SetDefaultValue(1700.0); // default: 170 cm. 106 fOuterRadiusHadCalo->AvailableForStates(G4State_PreInit, G4State_Idle); 107 108 fUpdateCommand = new G4UIcmdWithoutParameter("/mydet/update", this); 109 fUpdateCommand->SetGuidance("Update geometry."); 110 fUpdateCommand->SetGuidance("This command MUST be applied before \"beamOn\" "); 111 fUpdateCommand->SetGuidance("if you changed geometrical value(s)."); 112 fUpdateCommand->AvailableForStates(G4State_Idle); 113 } 114 115 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 116 117 DetectorMessenger::~DetectorMessenger() 118 { 119 delete fDetectorDir; 120 delete fMaterialTracker; 121 delete fMaterialEmCalo; 122 delete fMaterialHadCalo; 123 delete fInnerRadiusTracker; 124 delete fOuterRadiusTracker; 125 delete fInnerRadiusEmCalo; 126 delete fOuterRadiusEmCalo; 127 delete fInnerRadiusHadCalo; 128 delete fOuterRadiusHadCalo; 129 delete fUpdateCommand; 130 } 131 132 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 133 134 void DetectorMessenger::SetNewValue(G4UIcommand* command, G4String newValue) 135 { 136 if (command == fMaterialTracker) { 137 fDetector->SetMaterialTracker(newValue); 138 } 139 if (command == fMaterialEmCalo) { 140 fDetector->SetMaterialEmCalo(newValue); 141 } 142 if (command == fMaterialHadCalo) { 143 fDetector->SetMaterialHadCalo(newValue); 144 } 145 if (command == fInnerRadiusTracker) { 146 fDetector->SetInnerRadiusTracker(fInnerRadiusTracker->GetNewDoubleValue(newValue)); 147 } 148 if (command == fOuterRadiusTracker) { 149 fDetector->SetOuterRadiusTracker(fOuterRadiusTracker->GetNewDoubleValue(newValue)); 150 } 151 if (command == fInnerRadiusEmCalo) { 152 fDetector->SetInnerRadiusEmCalo(fInnerRadiusEmCalo->GetNewDoubleValue(newValue)); 153 } 154 if (command == fOuterRadiusEmCalo) { 155 fDetector->SetOuterRadiusEmCalo(fOuterRadiusEmCalo->GetNewDoubleValue(newValue)); 156 } 157 if (command == fInnerRadiusHadCalo) { 158 fDetector->SetInnerRadiusHadCalo(fInnerRadiusHadCalo->GetNewDoubleValue(newValue)); 159 } 160 if (command == fOuterRadiusHadCalo) { 161 fDetector->SetOuterRadiusHadCalo(fOuterRadiusHadCalo->GetNewDoubleValue(newValue)); 162 } 163 if (command == fUpdateCommand) { 164 fDetector->UpdateGeometry(); 165 } 166 } 167 168 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 169