EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
eASTDetectorConstructionMessenger.hh
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file eASTDetectorConstructionMessenger.hh
1 // ********************************************************************
2 //
3 // eASTDetectorConstructionMessenger.hh
4 // Headter file of a messenger class that handles geometry configuration.
5 //
6 // History
7 // May 8th, 2021 : first implementation
8 //
9 // ********************************************************************
10 
11 #ifndef eASTDetectorConstructionMessenger_H
12 #define eASTDetectorConstructionMessenger_H 1
13 
14 #include "G4UImessenger.hh"
15 #include "globals.hh"
16 
18 class G4UIdirectory;
19 class G4UIcommand;
20 class G4UIcmdWithAString;
21 class G4UIcmdWithAnInteger;
22 class G4UIcmdWithoutParameter;
23 
24 class eASTDetectorConstructionMessenger: public G4UImessenger
25 {
26  public:
29  virtual void SetNewValue(G4UIcommand*,G4String);
30  virtual G4String GetCurrentValue(G4UIcommand*);
31 
32  private:
34 
35  G4UIdirectory* geomDir;
36  G4UIcmdWithAnInteger* listSolidCmd;
37  G4UIcmdWithAnInteger* listLogVolCmd;
38  G4UIcmdWithAnInteger* listPhysVolCmd;
39  G4UIcmdWithAnInteger* listRegionCmd;
40  G4UIcommand* checkOverlapCmd;
41 
42  G4UIdirectory* materialDir;
43  G4UIcmdWithAString* listMatCmd;
44  G4UIcmdWithoutParameter* dumpMatCmd;
45  G4UIcmdWithAString* createMatCmd;
46  G4UIcmdWithAString* getMatCmd;
47  G4UIcommand* setMatCmd;
48 
49 };
50 
51 #endif
52