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 30 31 //....oooOO0OOooo........oooOO0OOooo........oo 31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 32 //....oooOO0OOooo........oooOO0OOooo........oo 32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 33 33 34 #include "DetectorMessenger.hh" 34 #include "DetectorMessenger.hh" 35 << 36 #include "DetectorConstruction.hh" 35 #include "DetectorConstruction.hh" 37 << 36 #include "G4UIdirectory.hh" 38 #include "G4UIcmdWithADoubleAndUnit.hh" 37 #include "G4UIcmdWithADoubleAndUnit.hh" 39 #include "G4UIcmdWithAString.hh" 38 #include "G4UIcmdWithAString.hh" 40 #include "G4UIcmdWithoutParameter.hh" 39 #include "G4UIcmdWithoutParameter.hh" 41 #include "G4UIdirectory.hh" << 42 #include "globals.hh" 40 #include "globals.hh" 43 41 44 //....oooOO0OOooo........oooOO0OOooo........oo 42 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 45 43 46 DetectorMessenger::DetectorMessenger(DetectorC << 44 DetectorMessenger::DetectorMessenger( DetectorConstruction* myDet ) : fDetector( myDet ) { 47 { << 45 fDetectorDir = new G4UIdirectory( "/mydet/" ); 48 fDetectorDir = new G4UIdirectory("/mydet/"); << 46 fDetectorDir->SetGuidance( "Detector control." ); 49 fDetectorDir->SetGuidance("Detector control. << 47 50 << 48 fMaterial = new G4UIcmdWithAString( "/mydet/material", this ); 51 fMaterial = new G4UIcmdWithAString("/mydet/m << 49 fMaterial->SetGuidance( "Choice of the material:" ); 52 fMaterial->SetGuidance("Choice of the materi << 50 fMaterial->SetGuidance( " a Geant4 NIST material, e.g. G4_Fe " ); 53 fMaterial->SetGuidance(" a Geant4 NIST mat << 51 fMaterial->SetParameterName( "choiceMaterial", true ); 54 fMaterial->SetParameterName("choiceMaterial" << 52 fMaterial->SetDefaultValue( "G4_Fe" ); 55 fMaterial->SetDefaultValue("G4_Fe"); << 53 fMaterial->AvailableForStates( G4State_PreInit, G4State_Idle ); 56 fMaterial->AvailableForStates(G4State_PreIni << 54 57 << 55 fThickness = new G4UIcmdWithADoubleAndUnit( "/mydet/thickness", this ); 58 fThickness = new G4UIcmdWithADoubleAndUnit(" << 56 fThickness->SetParameterName( "choiceThickness", true ); 59 fThickness->SetParameterName("choiceThicknes << 57 fThickness->SetGuidance( "Target thickness" ); 60 fThickness->SetGuidance("Target thickness"); << 58 fThickness->SetDefaultValue( 1000.0 ); // default: 1 meter. 61 fThickness->SetDefaultValue(1000.0); // def << 59 fThickness->AvailableForStates( G4State_PreInit, G4State_Idle ); 62 fThickness->AvailableForStates(G4State_PreIn << 60 63 << 61 fDiameter = new G4UIcmdWithADoubleAndUnit( "/mydet/diameter", this ); 64 fDiameter = new G4UIcmdWithADoubleAndUnit("/ << 62 fDiameter->SetParameterName( "choiceDiameter", true ); 65 fDiameter->SetParameterName("choiceDiameter" << 63 fDiameter->SetGuidance( "Target diameter" ); 66 fDiameter->SetGuidance("Target diameter"); << 64 fDiameter->SetDefaultValue( 1000.0 ); // default: 1 meter. 67 fDiameter->SetDefaultValue(1000.0); // defa << 65 fDiameter->AvailableForStates( G4State_PreInit, G4State_Idle ); 68 fDiameter->AvailableForStates(G4State_PreIni << 66 69 << 67 fUpdateCommand = new G4UIcmdWithoutParameter( "/mydet/update", this); 70 fUpdateCommand = new G4UIcmdWithoutParameter << 68 fUpdateCommand->SetGuidance( "Update calorimeter geometry." ); 71 fUpdateCommand->SetGuidance("Update calorime << 69 fUpdateCommand->SetGuidance( "This command MUST be applied before \"beamOn\" " ); 72 fUpdateCommand->SetGuidance("This command MU << 70 fUpdateCommand->SetGuidance( "if you changed geometrical value(s)." ); 73 fUpdateCommand->SetGuidance("if you changed << 71 fUpdateCommand->AvailableForStates( G4State_Idle ); 74 fUpdateCommand->AvailableForStates(G4State_I << 75 } 72 } 76 73 77 //....oooOO0OOooo........oooOO0OOooo........oo 74 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 78 75 79 DetectorMessenger::~DetectorMessenger() << 76 DetectorMessenger::~DetectorMessenger() { 80 { << 81 delete fDetectorDir; 77 delete fDetectorDir; 82 delete fMaterial; 78 delete fMaterial; 83 delete fThickness; 79 delete fThickness; 84 delete fDiameter; 80 delete fDiameter; 85 delete fUpdateCommand; 81 delete fUpdateCommand; 86 } 82 } 87 83 88 //....oooOO0OOooo........oooOO0OOooo........oo 84 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 89 85 90 void DetectorMessenger::SetNewValue(G4UIcomman << 86 void DetectorMessenger::SetNewValue( G4UIcommand* command, G4String newValue ) { 91 { << 87 if ( command == fMaterial ) { 92 if (command == fMaterial) { << 88 fDetector->SetMaterial( newValue ); 93 fDetector->SetMaterial(newValue); << 94 } 89 } 95 if (command == fThickness) { << 90 if ( command == fThickness ) { 96 fDetector->SetThickness(fThickness->GetNew << 91 fDetector->SetThickness( fThickness->GetNewDoubleValue( newValue ) ); 97 } 92 } 98 if (command == fDiameter) { << 93 if ( command == fDiameter ) { 99 fDetector->SetDiameter(fDiameter->GetNewDo << 94 fDetector->SetDiameter( fDiameter->GetNewDoubleValue(newValue) ); 100 } 95 } 101 if (command == fUpdateCommand) { << 96 if ( command == fUpdateCommand ) { 102 fDetector->UpdateGeometry(); 97 fDetector->UpdateGeometry(); 103 } 98 } 104 } 99 } 105 100 106 //....oooOO0OOooo........oooOO0OOooo........oo 101 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 107 102