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/TestEm6/src/Detector << 23 // $Id: DetectorMessenger.cc,v 1.4 2004/09/27 09:35:37 maire Exp $ 27 /// \brief Implementation of the DetectorMesse << 24 // GEANT4 tag $Name: geant4-08-00 $ 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 : G4UImessenger(), << 40 :Detector(Det) 46 fDetector(Det), << 41 { 47 fTestemDir(0), << 42 testemDir = new G4UIdirectory("/testem/"); 48 fDetDir(0), << 43 testemDir->SetGuidance(" detector control."); 49 fMaterCmd(0), << 44 50 fSizeCmd(0), << 45 detDir = new G4UIdirectory("/testem/det/"); 51 fMagFieldCmd(0), << 46 detDir->SetGuidance("detector construction commands"); 52 fMaxStepCmd(0), << 47 53 fUpdateCmd(0) << 48 MaterCmd = new G4UIcmdWithAString("/testem/det/setMat",this); 54 { << 49 MaterCmd->SetGuidance("Select material of the box."); 55 fTestemDir = new G4UIdirectory("/testem/"); << 50 MaterCmd->SetParameterName("choice",false); 56 fTestemDir->SetGuidance(" detector control." << 51 MaterCmd->AvailableForStates(G4State_PreInit,G4State_Idle); 57 << 52 58 fDetDir = new G4UIdirectory("/testem/det/"); << 53 SizeCmd = new G4UIcmdWithADoubleAndUnit("/testem/det/setSize",this); 59 fDetDir->SetGuidance("detector construction << 54 SizeCmd->SetGuidance("Set size of the box"); 60 << 55 SizeCmd->SetParameterName("Size",false); 61 fMaterCmd = new G4UIcmdWithAString("/testem/ << 56 SizeCmd->SetRange("Size>0."); 62 fMaterCmd->SetGuidance("Select material of t << 57 SizeCmd->SetUnitCategory("Length"); 63 fMaterCmd->SetParameterName("choice", false) << 58 SizeCmd->AvailableForStates(G4State_PreInit,G4State_Idle); 64 fMaterCmd->AvailableForStates(G4State_PreIni << 59 65 << 60 MagFieldCmd = new G4UIcmdWithADoubleAndUnit("/testem/det/setField",this); 66 fSizeCmd = new G4UIcmdWithADoubleAndUnit("/t << 61 MagFieldCmd->SetGuidance("Define magnetic field."); 67 fSizeCmd->SetGuidance("Set size of the box") << 62 MagFieldCmd->SetGuidance("Magnetic field will be in Z direction."); 68 fSizeCmd->SetParameterName("Size", false); << 63 MagFieldCmd->SetParameterName("Bz",false); 69 fSizeCmd->SetRange("Size>0."); << 64 MagFieldCmd->SetUnitCategory("Magnetic flux density"); 70 fSizeCmd->SetUnitCategory("Length"); << 65 MagFieldCmd->AvailableForStates(G4State_PreInit,G4State_Idle); 71 fSizeCmd->AvailableForStates(G4State_PreInit << 66 72 << 67 UpdateCmd = new G4UIcmdWithoutParameter("/testem/det/update",this); 73 fMagFieldCmd = new G4UIcmdWithADoubleAndUnit << 68 UpdateCmd->SetGuidance("Update calorimeter geometry."); 74 fMagFieldCmd->SetGuidance("Define magnetic f << 69 UpdateCmd->SetGuidance("This command MUST be applied before \"beamOn\" "); 75 fMagFieldCmd->SetGuidance("Magnetic field wi << 70 UpdateCmd->SetGuidance("if you changed geometrical value(s)."); 76 fMagFieldCmd->SetParameterName("Bz", false); << 71 UpdateCmd->AvailableForStates(G4State_Idle); 77 fMagFieldCmd->SetUnitCategory("Magnetic flux << 72 78 fMagFieldCmd->AvailableForStates(G4State_Pre << 73 MaxStepCmd = new G4UIcmdWithADoubleAndUnit("/testem/tracking/stepMax",this); 79 << 74 MaxStepCmd->SetGuidance("Set max allowed step size"); 80 fUpdateCmd = new G4UIcmdWithoutParameter("/t << 75 MaxStepCmd->SetParameterName("Size",false); 81 fUpdateCmd->SetGuidance("Update calorimeter << 76 MaxStepCmd->SetRange("Size>0."); 82 fUpdateCmd->SetGuidance("This command MUST b << 77 MaxStepCmd->SetUnitCategory("Length"); 83 fUpdateCmd->SetGuidance("if you changed geom << 78 MaxStepCmd->AvailableForStates(G4State_Idle); 84 fUpdateCmd->AvailableForStates(G4State_Idle) << 85 << 86 fMaxStepCmd = new G4UIcmdWithADoubleAndUnit( << 87 fMaxStepCmd->SetGuidance("Set max allowed st << 88 fMaxStepCmd->SetParameterName("Size", false) << 89 fMaxStepCmd->SetRange("Size>0."); << 90 fMaxStepCmd->SetUnitCategory("Length"); << 91 fMaxStepCmd->AvailableForStates(G4State_Idle << 92 } 79 } 93 80 94 //....oooOO0OOooo........oooOO0OOooo........oo 81 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 95 82 96 DetectorMessenger::~DetectorMessenger() 83 DetectorMessenger::~DetectorMessenger() 97 { 84 { 98 delete fMaterCmd; << 85 delete MaterCmd; 99 delete fSizeCmd; << 86 delete SizeCmd; 100 delete fMagFieldCmd; << 87 delete MagFieldCmd; 101 delete fUpdateCmd; << 88 delete UpdateCmd; 102 delete fMaxStepCmd; << 89 delete MaxStepCmd; 103 delete fDetDir; << 90 delete detDir; 104 delete fTestemDir; << 91 delete testemDir; 105 } 92 } 106 93 107 //....oooOO0OOooo........oooOO0OOooo........oo 94 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 108 95 109 void DetectorMessenger::SetNewValue(G4UIcomman << 96 void DetectorMessenger::SetNewValue(G4UIcommand* command,G4String newValue) 110 { << 97 { 111 if (command == fMaterCmd) { << 98 if( command == MaterCmd ) 112 fDetector->SetMaterial(newValue); << 99 { Detector->SetMaterial(newValue);} 113 } << 100 114 << 101 if( command == SizeCmd ) 115 if (command == fSizeCmd) { << 102 { Detector->SetSize(SizeCmd->GetNewDoubleValue(newValue));} 116 fDetector->SetSize(fSizeCmd->GetNewDoubleV << 103 117 } << 104 if( command == MagFieldCmd ) 118 << 105 { Detector->SetMagField(MagFieldCmd->GetNewDoubleValue(newValue));} 119 if (command == fMagFieldCmd) { << 106 120 fDetector->SetMagField(fMagFieldCmd->GetNe << 107 if( command == UpdateCmd ) 121 } << 108 { Detector->UpdateGeometry(); } 122 << 109 123 if (command == fUpdateCmd) { << 110 if( command == MaxStepCmd ) 124 fDetector->UpdateGeometry(); << 111 { Detector->SetMaxStepSize(MaxStepCmd->GetNewDoubleValue(newValue));} 125 } << 126 << 127 if (command == fMaxStepCmd) { << 128 fDetector->SetMaxStepSize(fMaxStepCmd->Get << 129 } << 130 } 112 } 131 113 132 //....oooOO0OOooo........oooOO0OOooo........oo 114 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 133 115