Geant4  9.6.p02
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
DetectorMessenger.cc
Go to the documentation of this file.
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 //
28 //
29 // $Id$
30 //
31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
33 
34 #include "DetectorMessenger.hh"
35 
36 #include "DetectorConstruction.hh"
37 #include "G4UIdirectory.hh"
38 #include "G4UIcmdWithAString.hh"
39 #include "G4UIcmdWith3Vector.hh"
42 
43 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
44 
46 :fDetector(Det)
47 {
48  fTestemDir = new G4UIdirectory("/testem/");
49  fTestemDir->SetGuidance(" detector control.");
50 
51  fDetDir = new G4UIdirectory("/testem/det/");
52  fDetDir->SetGuidance("detector construction commands");
53 
54  fMaterCmd = new G4UIcmdWithAString("/testem/det/setMat",this);
55  fMaterCmd->SetGuidance("Select Material.");
56  fMaterCmd->SetParameterName("material",false);
58 
59  fLBinCmd = new G4UIcmdWith3Vector("/testem/det/setLbin",this);
60  fLBinCmd->SetGuidance("set longitudinal bining");
61  fLBinCmd->SetGuidance("nb of bins; bin thickness (in radl)");
62  fLBinCmd->SetParameterName("nLtot","dLradl"," ",true);
63  fLBinCmd->SetRange("nLtot>=1 && dLradl>0");
65 
66  fRBinCmd = new G4UIcmdWith3Vector("/testem/det/setRbin",this);
67  fRBinCmd->SetGuidance("set radial bining");
68  fRBinCmd->SetGuidance("nb of bins; bin thickness (in radl)");
69  fRBinCmd->SetParameterName("nRtot","dRradl"," ",true);
70  fRBinCmd->SetRange("nRtot>=1 && dRradl>0");
72 
73  fFieldCmd = new G4UIcmdWithADoubleAndUnit("/testem/det/setField",this);
74  fFieldCmd->SetGuidance("Define magnetic field.");
75  fFieldCmd->SetGuidance("Magnetic field will be in Z direction.");
76  fFieldCmd->SetParameterName("Bz",false);
77  fFieldCmd->SetUnitCategory("Magnetic flux density");
79 
80  fUpdateCmd = new G4UIcmdWithoutParameter("/testem/det/update",this);
81  fUpdateCmd->SetGuidance("Update geometry.");
82  fUpdateCmd->SetGuidance("This command MUST be applied before \"beamOn\" ");
83  fUpdateCmd->SetGuidance("if you changed geometrical value(s).");
84  fUpdateCmd->AvailableForStates(G4State_Idle);
85 }
86 
87 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
88 
90 {
91  delete fMaterCmd;
92  delete fLBinCmd;
93  delete fRBinCmd;
94  delete fFieldCmd;
95  delete fUpdateCmd;
96  delete fDetDir;
97  delete fTestemDir;
98 }
99 
100 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
101 
102 void DetectorMessenger::SetNewValue(G4UIcommand* command, G4String newValue)
103 {
104  if( command == fMaterCmd )
105  { fDetector->SetMaterial(newValue);}
106 
107  if( command == fLBinCmd )
108  { fDetector->SetLBining(fLBinCmd->GetNew3VectorValue(newValue));}
109 
110  if( command == fRBinCmd )
111  { fDetector->SetRBining(fRBinCmd->GetNew3VectorValue(newValue));}
112 
113  if( command == fFieldCmd )
114  { fDetector->SetMagField(fFieldCmd->GetNewDoubleValue(newValue));}
115 
116  if( command == fUpdateCmd )
117  { fDetector->UpdateGeometry();}
118 }
119 
120 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......