Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // 26 /// \file DetectorMessenger.cc 26 /// \file DetectorMessenger.cc 27 /// \brief Implementation of the DetectorMesse 27 /// \brief Implementation of the DetectorMessenger class 28 // 28 // 29 // 29 // 30 //....oooOO0OOooo........oooOO0OOooo........oo 30 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 31 //....oooOO0OOooo........oooOO0OOooo........oo 31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 32 32 33 #include "DetectorMessenger.hh" 33 #include "DetectorMessenger.hh" 34 34 35 #include "DetectorConstruction.hh" 35 #include "DetectorConstruction.hh" 36 << 37 #include "G4UIcmdWithADoubleAndUnit.hh" << 38 #include "G4UIcmdWithAString.hh" << 39 #include "G4UIdirectory.hh" 36 #include "G4UIdirectory.hh" >> 37 #include "G4UIcmdWithAString.hh" >> 38 #include "G4UIcmdWithADoubleAndUnit.hh" 40 39 41 //....oooOO0OOooo........oooOO0OOooo........oo 40 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 42 41 43 DetectorMessenger::DetectorMessenger(DetectorC << 42 DetectorMessenger::DetectorMessenger(DetectorConstruction* Det) 44 { << 43 :G4UImessenger(), >> 44 fDetector(Det), fRdecayDir(0), fDetDir(0), >> 45 fTargMatCmd(0), fDetectMatCmd(0), fTargRadiusCmd(0), >> 46 fDetectThicknessCmd(0), fTargLengthCmd(0), fDetectLengthCmd(0) >> 47 { 45 fRdecayDir = new G4UIdirectory("/rdecay02/") 48 fRdecayDir = new G4UIdirectory("/rdecay02/"); 46 fRdecayDir->SetGuidance("commands specific t 49 fRdecayDir->SetGuidance("commands specific to this example"); 47 << 50 48 G4bool broadcast = false; 51 G4bool broadcast = false; 49 fDetDir = new G4UIdirectory("/rdecay02/det/" << 52 fDetDir = new G4UIdirectory("/rdecay02/det/",broadcast); 50 fDetDir->SetGuidance("detector construction 53 fDetDir->SetGuidance("detector construction commands"); 51 << 54 52 fTargMatCmd = new G4UIcmdWithAString("/rdeca << 55 fTargMatCmd = new G4UIcmdWithAString("/rdecay02/det/setTargetMate",this); 53 fTargMatCmd->SetGuidance("Select material of 56 fTargMatCmd->SetGuidance("Select material of the target"); 54 fTargMatCmd->SetParameterName("choice", fals << 57 fTargMatCmd->SetParameterName("choice",false); 55 fTargMatCmd->AvailableForStates(G4State_PreI << 58 fTargMatCmd->AvailableForStates(G4State_PreInit,G4State_Idle); 56 << 59 57 fTargRadiusCmd = new G4UIcmdWithADoubleAndUn << 60 fTargRadiusCmd = >> 61 new G4UIcmdWithADoubleAndUnit("/rdecay02/det/setTargetRadius", this); 58 fTargRadiusCmd->SetGuidance("Set the Target 62 fTargRadiusCmd->SetGuidance("Set the Target Radius."); 59 fTargRadiusCmd->SetUnitCategory("Length"); 63 fTargRadiusCmd->SetUnitCategory("Length"); 60 fTargRadiusCmd->SetParameterName("choice", f << 64 fTargRadiusCmd->SetParameterName("choice",false); 61 fTargRadiusCmd->AvailableForStates(G4State_P << 65 fTargRadiusCmd->AvailableForStates(G4State_PreInit); 62 66 63 fTargLengthCmd = new G4UIcmdWithADoubleAndUn << 67 >> 68 fTargLengthCmd = >> 69 new G4UIcmdWithADoubleAndUnit("/rdecay02/det/setTargetLength", this); 64 fTargLengthCmd->SetGuidance("Set the Target 70 fTargLengthCmd->SetGuidance("Set the Target Length."); 65 fTargLengthCmd->SetUnitCategory("Length"); 71 fTargLengthCmd->SetUnitCategory("Length"); 66 fTargLengthCmd->SetParameterName("choice", f << 72 fTargLengthCmd->SetParameterName("choice",false); 67 fTargLengthCmd->AvailableForStates(G4State_P 73 fTargLengthCmd->AvailableForStates(G4State_PreInit); >> 74 68 75 69 fDetectMatCmd = new G4UIcmdWithAString("/rde << 76 fDetectMatCmd = new G4UIcmdWithAString("/rdecay02/det/setDetectorMate",this); 70 fDetectMatCmd->SetGuidance("Select Material 77 fDetectMatCmd->SetGuidance("Select Material of the Detector."); 71 fDetectMatCmd->SetParameterName("choice", fa << 78 fDetectMatCmd->SetParameterName("choice",false); 72 fDetectMatCmd->AvailableForStates(G4State_Pr << 79 fDetectMatCmd->AvailableForStates(G4State_PreInit,G4State_Idle); 73 80 74 fDetectThicknessCmd = new G4UIcmdWithADouble << 81 fDetectThicknessCmd = >> 82 new G4UIcmdWithADoubleAndUnit("/rdecay02/det/setDetectorThickness",this); 75 fDetectThicknessCmd->SetGuidance("Set the De 83 fDetectThicknessCmd->SetGuidance("Set the Detector Thickness."); 76 fDetectThicknessCmd->SetUnitCategory("Length 84 fDetectThicknessCmd->SetUnitCategory("Length"); 77 fDetectThicknessCmd->SetParameterName("choic << 85 fDetectThicknessCmd->SetParameterName("choice",false); 78 fDetectThicknessCmd->AvailableForStates(G4St 86 fDetectThicknessCmd->AvailableForStates(G4State_PreInit); 79 87 80 fDetectLengthCmd = new G4UIcmdWithADoubleAnd << 88 fDetectLengthCmd = >> 89 new G4UIcmdWithADoubleAndUnit("/rdecay02/det/setDetectorLength",this); 81 fDetectLengthCmd->SetGuidance("Set the Detec 90 fDetectLengthCmd->SetGuidance("Set the Detector Length."); 82 fDetectLengthCmd->SetUnitCategory("Length"); 91 fDetectLengthCmd->SetUnitCategory("Length"); 83 fDetectLengthCmd->SetParameterName("choice", << 92 fDetectLengthCmd->SetParameterName("choice",false); 84 fDetectLengthCmd->AvailableForStates(G4State 93 fDetectLengthCmd->AvailableForStates(G4State_PreInit); 85 } 94 } 86 95 87 //....oooOO0OOooo........oooOO0OOooo........oo 96 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 88 97 89 DetectorMessenger::~DetectorMessenger() 98 DetectorMessenger::~DetectorMessenger() 90 { 99 { 91 delete fTargMatCmd; 100 delete fTargMatCmd; 92 delete fDetectMatCmd; 101 delete fDetectMatCmd; 93 delete fTargRadiusCmd; 102 delete fTargRadiusCmd; 94 delete fDetectThicknessCmd; 103 delete fDetectThicknessCmd; 95 delete fTargLengthCmd; 104 delete fTargLengthCmd; 96 delete fDetectLengthCmd; 105 delete fDetectLengthCmd; 97 delete fDetDir; 106 delete fDetDir; 98 delete fRdecayDir; << 107 delete fRdecayDir; 99 } 108 } 100 109 101 //....oooOO0OOooo........oooOO0OOooo........oo 110 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 102 111 103 void DetectorMessenger::SetNewValue(G4UIcomman << 112 void DetectorMessenger::SetNewValue(G4UIcommand* command,G4String newValue) 104 { << 113 { 105 if (command == fTargMatCmd) { << 114 if (command == fTargMatCmd ) 106 fDetector->SetTargetMaterial(newValue); << 115 { fDetector->SetTargetMaterial(newValue);} 107 } << 116 108 << 117 if (command == fTargLengthCmd ) 109 if (command == fTargLengthCmd) { << 118 { fDetector->SetTargetLength(fTargLengthCmd->GetNewDoubleValue(newValue));} 110 fDetector->SetTargetLength(fTargLengthCmd- << 119 111 } << 120 if (command == fTargRadiusCmd ) 112 << 121 {fDetector->SetTargetRadius(fTargLengthCmd->GetNewDoubleValue(newValue));} 113 if (command == fTargRadiusCmd) { << 122 114 fDetector->SetTargetRadius(fTargLengthCmd- << 123 if (command == fDetectMatCmd ) 115 } << 124 { fDetector->SetDetectorMaterial(newValue);} 116 << 125 117 if (command == fDetectMatCmd) { << 126 if (command == fDetectLengthCmd ) 118 fDetector->SetDetectorMaterial(newValue); << 127 {fDetector->SetDetectorLength( 119 } << 128 fDetectLengthCmd->GetNewDoubleValue(newValue));} 120 << 129 121 if (command == fDetectLengthCmd) { << 130 if (command == fDetectThicknessCmd ) 122 fDetector->SetDetectorLength(fDetectLength << 131 {fDetector->SetDetectorThickness( 123 } << 132 fDetectThicknessCmd->GetNewDoubleValue(newValue));} 124 << 125 if (command == fDetectThicknessCmd) { << 126 fDetector->SetDetectorThickness(fDetectThi << 127 } << 128 } 133 } 129 134 130 //....oooOO0OOooo........oooOO0OOooo........oo 135 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 131 136