Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions
LXeDetectorMessenger Class Reference

#include <LXeDetectorMessenger.hh>

Inheritance diagram for LXeDetectorMessenger:
G4UImessenger

Public Member Functions

 LXeDetectorMessenger (LXeDetectorConstruction *)
 
virtual ~LXeDetectorMessenger ()
 
virtual void SetNewValue (G4UIcommand *, G4String)
 
- Public Member Functions inherited from G4UImessenger
 G4UImessenger ()
 
 G4UImessenger (const G4String &path, const G4String &dsc, G4bool commandsToBeBroadcasted=true)
 
virtual ~G4UImessenger ()
 
virtual G4String GetCurrentValue (G4UIcommand *command)
 
G4bool operator== (const G4UImessenger &messenger) const
 

Additional Inherited Members

- Protected Member Functions inherited from G4UImessenger
G4String ItoS (G4int i)
 
G4String DtoS (G4double a)
 
G4String BtoS (G4bool b)
 
G4int StoI (G4String s)
 
G4double StoD (G4String s)
 
G4bool StoB (G4String s)
 
void AddUIcommand (G4UIcommand *newCommand)
 
void CreateDirectory (const G4String &path, const G4String &dsc, G4bool commandsToBeBroadcasted=true)
 
template<typename T >
T * CreateCommand (const G4String &cname, const G4String &dsc)
 
- Protected Attributes inherited from G4UImessenger
G4UIdirectorybaseDir
 
G4String baseDirName
 

Detailed Description

Definition at line 47 of file LXeDetectorMessenger.hh.

Constructor & Destructor Documentation

LXeDetectorMessenger::LXeDetectorMessenger ( LXeDetectorConstruction detector)

Definition at line 46 of file LXeDetectorMessenger.cc.

References G4UIcommand::AvailableForStates(), G4State_Idle, G4State_PreInit, G4UIcmdWithADoubleAndUnit::SetDefaultUnit(), G4UIcmdWith3VectorAndUnit::SetDefaultUnit(), G4UIcommand::SetGuidance(), G4UIcmdWithAnInteger::SetParameterName(), G4UIcmdWithADoubleAndUnit::SetParameterName(), G4UIcmdWith3VectorAndUnit::SetParameterName(), and G4UIcommand::SetToBeBroadcasted().

47  : fLXeDetector(detector)
48 {
49  //Setup a command directory for detector controls with guidance
50  fDetectorDir = new G4UIdirectory("/LXe/detector/");
51  fDetectorDir->SetGuidance("Detector geometry control");
52 
53  fVolumesDir = new G4UIdirectory("/LXe/detector/volumes/");
54  fVolumesDir->SetGuidance("Enable/disable volumes");
55 
56  //Various commands for modifying detector geometry
57  fDimensionsCmd =
58  new G4UIcmdWith3VectorAndUnit("/LXe/detector/dimensions",this);
59  fDimensionsCmd->SetGuidance("Set the dimensions of the detector volume.");
60  fDimensionsCmd->SetParameterName("scint_x","scint_y","scint_z",false);
61  fDimensionsCmd->SetDefaultUnit("cm");
63  fDimensionsCmd->SetToBeBroadcasted(false);
64 
65  fHousingThicknessCmd = new G4UIcmdWithADoubleAndUnit
66  ("/LXe/detector/housingThickness",this);
67  fHousingThicknessCmd->SetGuidance("Set the thickness of the housing.");
68  fHousingThicknessCmd->SetParameterName("d_mtl",false);
69  fHousingThicknessCmd->SetDefaultUnit("cm");
70  fHousingThicknessCmd->AvailableForStates(G4State_PreInit,G4State_Idle);
71  fHousingThicknessCmd->SetToBeBroadcasted(false);
72 
73  fPmtRadiusCmd = new G4UIcmdWithADoubleAndUnit
74  ("/LXe/detector/pmtRadius",this);
75  fPmtRadiusCmd->SetGuidance("Set the radius of the PMTs.");
76  fPmtRadiusCmd->SetParameterName("radius",false);
77  fPmtRadiusCmd->SetDefaultUnit("cm");
79  fPmtRadiusCmd->SetToBeBroadcasted(false);
80 
81  fNxCmd = new G4UIcmdWithAnInteger("/LXe/detector/nx",this);
82  fNxCmd->SetGuidance("Set the number of PMTs along the x-dimension.");
83  fNxCmd->SetParameterName("nx",false);
85  fNxCmd->SetToBeBroadcasted(false);
86 
87  fNyCmd = new G4UIcmdWithAnInteger("/LXe/detector/ny",this);
88  fNyCmd->SetGuidance("Set the number of PMTs along the y-dimension.");
89  fNyCmd->SetParameterName("ny",false);
91  fNyCmd->SetToBeBroadcasted(false);
92 
93  fNzCmd = new G4UIcmdWithAnInteger("/LXe/detector/nz",this);
94  fNzCmd->SetGuidance("Set the number of PMTs along the z-dimension.");
95  fNzCmd->SetParameterName("nz",false);
97  fNzCmd->SetToBeBroadcasted(false);
98 
99  fSphereCmd = new G4UIcmdWithABool("/LXe/detector/volumes/sphere",this);
100  fSphereCmd->SetGuidance("Enable/Disable the sphere.");
102  fSphereCmd->SetToBeBroadcasted(false);
103 
104  fReflectivityCmd = new G4UIcmdWithADouble("/LXe/detector/reflectivity",this);
105  fReflectivityCmd->SetGuidance("Set the reflectivity of the housing.");
107  fReflectivityCmd->SetToBeBroadcasted(false);
108 
109  fWlsCmd = new G4UIcmdWithABool("/LXe/detector/volumes/wls",this);
110  fWlsCmd->SetGuidance("Enable/Disable the WLS slab");
112  fWlsCmd->SetToBeBroadcasted(false);
113 
114  fLxeCmd = new G4UIcmdWithABool("/LXe/detector/volumes/lxe",this);
115  fLxeCmd->SetGuidance("Enable/Disable the main detector volume.");
117  fLxeCmd->SetToBeBroadcasted(false);
118 
119  fNFibersCmd = new G4UIcmdWithAnInteger("/LXe/detector/nfibers",this);
120  fNFibersCmd->SetGuidance("Set the number of WLS fibers in the WLS slab.");
122  fNFibersCmd->SetToBeBroadcasted(false);
123 
124  fDefaultsCmd = new G4UIcommand("/LXe/detector/defaults",this);
125  fDefaultsCmd->SetGuidance("Set all detector geometry values to defaults.");
127  fDefaultsCmd->SetToBeBroadcasted(false);
128 
129  fMainScintYield=new G4UIcmdWithADouble("/LXe/detector/MainScintYield",this);
130  fMainScintYield->SetGuidance("Set scinitillation yield of main volume.");
131  fMainScintYield->SetGuidance("Specified in photons/MeV");
133  fMainScintYield->SetToBeBroadcasted(false);
134 
135  fWLSScintYield = new G4UIcmdWithADouble("/LXe/detector/WLSScintYield",this);
136  fWLSScintYield->SetGuidance("Set scintillation yield of WLS Slab");
137  fWLSScintYield->SetGuidance("Specified in photons/MeV");
139  fWLSScintYield->SetToBeBroadcasted(false);
140 }
void SetParameterName(const char *theName, G4bool omittable, G4bool currentAsDefault=false)
void SetDefaultUnit(const char *defUnit)
void SetToBeBroadcasted(G4bool val)
Definition: G4UIcommand.hh:184
void SetParameterName(const char *theNameX, const char *theNameY, const char *theNameZ, G4bool omittable, G4bool currentAsDefault=false)
void SetGuidance(const char *aGuidance)
Definition: G4UIcommand.hh:161
void AvailableForStates(G4ApplicationState s1)
Definition: G4UIcommand.cc:225
void SetDefaultUnit(const char *defUnit)
void SetParameterName(const char *theName, G4bool omittable, G4bool currentAsDefault=false)
LXeDetectorMessenger::~LXeDetectorMessenger ( )
virtual

Definition at line 144 of file LXeDetectorMessenger.cc.

145 {
146  delete fDimensionsCmd;
147  delete fHousingThicknessCmd;
148  delete fPmtRadiusCmd;
149  delete fNxCmd;
150  delete fNyCmd;
151  delete fNzCmd;
152  delete fDetectorDir;
153  delete fVolumesDir;
154  delete fDefaultsCmd;
155  delete fSphereCmd;
156  delete fWlsCmd;
157  delete fLxeCmd;
158  delete fNFibersCmd;
159  delete fReflectivityCmd;
160  delete fMainScintYield;
161  delete fWLSScintYield;
162 }

Member Function Documentation

void LXeDetectorMessenger::SetNewValue ( G4UIcommand command,
G4String  newValue 
)
virtual

Reimplemented from G4UImessenger.

Definition at line 166 of file LXeDetectorMessenger.cc.

References G4UIcmdWith3VectorAndUnit::GetNew3VectorValue(), G4UIcmdWithABool::GetNewBoolValue(), G4UIcmdWithADouble::GetNewDoubleValue(), G4UIcmdWithADoubleAndUnit::GetNewDoubleValue(), G4UIcmdWithAnInteger::GetNewIntValue(), LXeDetectorConstruction::SetDefaults(), LXeDetectorConstruction::SetDimensions(), LXeDetectorConstruction::SetHousingReflectivity(), LXeDetectorConstruction::SetHousingThickness(), LXeDetectorConstruction::SetMainScintYield(), LXeDetectorConstruction::SetMainVolumeOn(), LXeDetectorConstruction::SetNFibers(), LXeDetectorConstruction::SetNX(), LXeDetectorConstruction::SetNY(), LXeDetectorConstruction::SetNZ(), LXeDetectorConstruction::SetPMTRadius(), LXeDetectorConstruction::SetSphereOn(), LXeDetectorConstruction::SetWLSScintYield(), and LXeDetectorConstruction::SetWLSSlabOn().

167 {
168  if( command == fDimensionsCmd ){
169  fLXeDetector->SetDimensions(fDimensionsCmd->GetNew3VectorValue(newValue));
170  }
171  else if (command == fHousingThicknessCmd){
172  fLXeDetector->SetHousingThickness(fHousingThicknessCmd
173  ->GetNewDoubleValue(newValue));
174  }
175  else if (command == fPmtRadiusCmd){
176  fLXeDetector->SetPMTRadius(fPmtRadiusCmd->GetNewDoubleValue(newValue));
177  }
178  else if (command == fNxCmd){
179  fLXeDetector->SetNX(fNxCmd->GetNewIntValue(newValue));
180  }
181  else if (command == fNyCmd){
182  fLXeDetector->SetNY(fNyCmd->GetNewIntValue(newValue));
183  }
184  else if (command == fNzCmd){
185  fLXeDetector->SetNZ(fNzCmd->GetNewIntValue(newValue));
186  }
187  else if (command == fDefaultsCmd){
188  fLXeDetector->SetDefaults();
189  }
190  else if (command == fSphereCmd){
191  fLXeDetector->SetSphereOn(fSphereCmd->GetNewBoolValue(newValue));
192  }
193  else if (command == fReflectivityCmd){
194  fLXeDetector
195  ->SetHousingReflectivity(fReflectivityCmd->GetNewDoubleValue(newValue));
196  }
197  else if (command == fWlsCmd){
198  fLXeDetector->SetWLSSlabOn(fWlsCmd->GetNewBoolValue(newValue));
199  }
200  else if (command == fLxeCmd){
201  fLXeDetector->SetMainVolumeOn(fLxeCmd->GetNewBoolValue(newValue));
202  }
203  else if (command == fNFibersCmd){
204  fLXeDetector->SetNFibers(fNFibersCmd->GetNewIntValue(newValue));
205  }
206  else if (command == fMainScintYield){
207  fLXeDetector->SetMainScintYield(fMainScintYield->GetNewDoubleValue(newValue));
208  }
209  else if (command == fWLSScintYield){
210  fLXeDetector->SetWLSScintYield(fWLSScintYield->GetNewDoubleValue(newValue));
211  }
212 }
static G4int GetNewIntValue(const char *paramString)
static G4ThreeVector GetNew3VectorValue(const char *paramString)
static G4double GetNewDoubleValue(const char *paramString)
static G4bool GetNewBoolValue(const char *paramString)
static G4double GetNewDoubleValue(const char *paramString)

The documentation for this class was generated from the following files: