Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
examples/extended/electromagnetic/TestEm2/src/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 //
26 /// \file electromagnetic/TestEm2/src/DetectorMessenger.cc
27 /// \brief Implementation of the DetectorMessenger class
28 //
29 // $Id: DetectorMessenger.cc 77897 2013-11-29 09:23:56Z gcosmo $
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 :G4UImessenger(),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  fMaterCmd->SetToBeBroadcasted(false);
59 
60  fLBinCmd = new G4UIcmdWith3Vector("/testem/det/setLbin",this);
61  fLBinCmd->SetGuidance("set longitudinal bining");
62  fLBinCmd->SetGuidance("nb of bins; bin thickness (in radl)");
63  fLBinCmd->SetParameterName("nLtot","dLradl"," ",true);
64  fLBinCmd->SetRange("nLtot>=1 && dLradl>0");
66  fLBinCmd->SetToBeBroadcasted(false);
67 
68  fRBinCmd = new G4UIcmdWith3Vector("/testem/det/setRbin",this);
69  fRBinCmd->SetGuidance("set radial bining");
70  fRBinCmd->SetGuidance("nb of bins; bin thickness (in radl)");
71  fRBinCmd->SetParameterName("nRtot","dRradl"," ",true);
72  fRBinCmd->SetRange("nRtot>=1 && dRradl>0");
74  fRBinCmd->SetToBeBroadcasted(false);
75 
76 }
77 
78 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
79 
81 {
82  delete fMaterCmd;
83  delete fLBinCmd;
84  delete fRBinCmd;
85  delete fDetDir;
86  delete fTestemDir;
87 }
88 
89 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
90 
92 {
93  if( command == fMaterCmd )
94  { fDetector->SetMaterial(newValue);}
95 
96  if( command == fLBinCmd )
97  { fDetector->SetLBining(fLBinCmd->GetNew3VectorValue(newValue));}
98 
99  if( command == fRBinCmd )
100  { fDetector->SetRBining(fRBinCmd->GetNew3VectorValue(newValue));}
101 
102 }
103 
104 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
void SetParameterName(const char *theName, G4bool omittable, G4bool currentAsDefault=false)
void SetParameterName(const char *theNameX, const char *theNameY, const char *theNameZ, G4bool omittable, G4bool currentAsDefault=false)
void SetToBeBroadcasted(G4bool val)
Definition: G4UIcommand.hh:184
static G4ThreeVector GetNew3VectorValue(const char *paramString)
void SetRange(const char *rs)
Definition: G4UIcommand.hh:125
void SetGuidance(const char *aGuidance)
Definition: G4UIcommand.hh:161
void AvailableForStates(G4ApplicationState s1)
Definition: G4UIcommand.cc:225