Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer << 3 // * DISCLAIMER * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th << 5 // * The following disclaimer summarizes all the specific disclaimers * 6 // * the Geant4 Collaboration. It is provided << 6 // * of contributors to this software. The specific disclaimers,which * 7 // * conditions of the Geant4 Software License << 7 // * govern, are listed with their locations in: * 8 // * LICENSE and available at http://cern.ch/ << 8 // * http://cern.ch/geant4/license * 9 // * include a list of copyright holders. << 10 // * 9 // * * 11 // * Neither the authors of this software syst 10 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 11 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 12 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 13 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file << 14 // * use. * 16 // * for the full disclaimer and the limitatio << 17 // * 15 // * * 18 // * This code implementation is the result << 16 // * This code implementation is the intellectual property of the * 19 // * technical work of the GEANT4 collaboratio << 17 // * GEANT4 collaboration. * 20 // * By using, copying, modifying or distri << 18 // * By copying, distributing or modifying the Program (or any work * 21 // * any work based on the software) you ag << 19 // * based on the Program) you indicate your acceptance of this * 22 // * use in resulting scientific publicati << 20 // * statement, and all its terms. * 23 // * acceptance of all terms of the Geant4 Sof << 24 // ******************************************* 21 // ******************************************************************** 25 // 22 // 26 /// \file electromagnetic/TestEm1/src/Detector << 23 // $Id: DetectorMessenger.cc,v 1.2 2004/09/15 13:17:19 maire Exp $ 27 /// \brief Implementation of the DetectorMesse << 24 // GEANT4 tag $Name: geant4-07-01 $ 28 // << 29 // 25 // 30 //....oooOO0OOooo........oooOO0OOooo........oo 26 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 31 //....oooOO0OOooo........oooOO0OOooo........oo 27 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 32 28 33 #include "DetectorMessenger.hh" 29 #include "DetectorMessenger.hh" 34 30 35 #include "DetectorConstruction.hh" 31 #include "DetectorConstruction.hh" 36 << 32 #include "G4UIdirectory.hh" 37 #include "G4UIcmdWithADoubleAndUnit.hh" << 38 #include "G4UIcmdWithAString.hh" 33 #include "G4UIcmdWithAString.hh" >> 34 #include "G4UIcmdWithADoubleAndUnit.hh" 39 #include "G4UIcmdWithoutParameter.hh" 35 #include "G4UIcmdWithoutParameter.hh" 40 #include "G4UIdirectory.hh" << 41 36 42 //....oooOO0OOooo........oooOO0OOooo........oo 37 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 43 38 44 DetectorMessenger::DetectorMessenger(DetectorC << 39 DetectorMessenger::DetectorMessenger(DetectorConstruction * Det) 45 { << 40 :Detector(Det) 46 fTestemDir = new G4UIdirectory("/testem/"); << 41 { 47 fTestemDir->SetGuidance("commands specific t << 42 testemDir = new G4UIdirectory("/testem/"); 48 << 43 testemDir->SetGuidance("commands specific to this example"); 49 fDetDir = new G4UIdirectory("/testem/det/"); << 44 50 fDetDir->SetGuidance("detector construction << 45 detDir = new G4UIdirectory("/testem/det/"); 51 << 46 detDir->SetGuidance("detector construction commands"); 52 fMaterCmd = new G4UIcmdWithAString("/testem/ << 47 53 fMaterCmd->SetGuidance("Select material of t << 48 MaterCmd = new G4UIcmdWithAString("/testem/det/setMat",this); 54 fMaterCmd->SetParameterName("choice", false) << 49 MaterCmd->SetGuidance("Select material of the box."); 55 fMaterCmd->AvailableForStates(G4State_PreIni << 50 MaterCmd->SetParameterName("choice",false); 56 fMaterCmd->SetToBeBroadcasted(false); << 51 MaterCmd->AvailableForStates(G4State_PreInit,G4State_Idle); 57 << 52 58 fSizeCmd = new G4UIcmdWithADoubleAndUnit("/t << 53 SizeCmd = new G4UIcmdWithADoubleAndUnit("/testem/det/setSize",this); 59 fSizeCmd->SetGuidance("Set size of the box") << 54 SizeCmd->SetGuidance("Set size of the box"); 60 fSizeCmd->SetParameterName("Size", false); << 55 SizeCmd->SetParameterName("Size",false); 61 fSizeCmd->SetRange("Size>0."); << 56 SizeCmd->SetRange("Size>0."); 62 fSizeCmd->SetUnitCategory("Length"); << 57 SizeCmd->SetUnitCategory("Length"); 63 fSizeCmd->AvailableForStates(G4State_PreInit << 58 SizeCmd->AvailableForStates(G4State_PreInit,G4State_Idle); 64 fSizeCmd->SetToBeBroadcasted(false); << 59 >> 60 MagFieldCmd = new G4UIcmdWithADoubleAndUnit("/testem/det/setField",this); >> 61 MagFieldCmd->SetGuidance("Define magnetic field."); >> 62 MagFieldCmd->SetGuidance("Magnetic field will be in Z direction."); >> 63 MagFieldCmd->SetParameterName("Bz",false); >> 64 MagFieldCmd->SetUnitCategory("Magnetic flux density"); >> 65 MagFieldCmd->AvailableForStates(G4State_PreInit,G4State_Idle); >> 66 >> 67 UpdateCmd = new G4UIcmdWithoutParameter("/testem/det/update",this); >> 68 UpdateCmd->SetGuidance("Update calorimeter geometry."); >> 69 UpdateCmd->SetGuidance("This command MUST be applied before \"beamOn\" "); >> 70 UpdateCmd->SetGuidance("if you changed geometrical value(s)."); >> 71 UpdateCmd->AvailableForStates(G4State_Idle); 65 } 72 } 66 73 67 //....oooOO0OOooo........oooOO0OOooo........oo 74 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 68 75 69 DetectorMessenger::~DetectorMessenger() 76 DetectorMessenger::~DetectorMessenger() 70 { 77 { 71 delete fMaterCmd; << 78 delete MaterCmd; 72 delete fSizeCmd; << 79 delete SizeCmd; 73 delete fDetDir; << 80 delete MagFieldCmd; 74 delete fTestemDir; << 81 delete UpdateCmd; >> 82 delete detDir; >> 83 delete testemDir; 75 } 84 } 76 85 77 //....oooOO0OOooo........oooOO0OOooo........oo 86 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 78 87 79 void DetectorMessenger::SetNewValue(G4UIcomman << 88 void DetectorMessenger::SetNewValue(G4UIcommand* command,G4String newValue) 80 { << 89 { 81 if (command == fMaterCmd) { << 90 if( command == MaterCmd ) 82 fDetector->SetMaterial(newValue); << 91 { Detector->SetMaterial(newValue);} 83 } << 92 84 << 93 if( command == SizeCmd ) 85 if (command == fSizeCmd) { << 94 { Detector->SetSize(SizeCmd->GetNewDoubleValue(newValue));} 86 fDetector->SetSize(fSizeCmd->GetNewDoubleV << 95 87 } << 96 if( command == MagFieldCmd ) >> 97 { Detector->SetMagField(MagFieldCmd->GetNewDoubleValue(newValue));} >> 98 >> 99 if( command == UpdateCmd ) >> 100 { Detector->UpdateGeometry(); } 88 } 101 } 89 102 90 //....oooOO0OOooo........oooOO0OOooo........oo 103 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 91 104