EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
eASTDetectorComponentMessenger.hh
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file eASTDetectorComponentMessenger.hh
1 // ********************************************************************
2 //
3 // eASTDetectorComponentMessenger.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 eASTDetectorComponentMessenger_H
12 #define eASTDetectorComponentMessenger_H 1
13 
14 #include "G4UImessenger.hh"
15 #include "globals.hh"
16 
18 class G4UIcmdWithAnInteger;
19 class G4UIcmdWith3VectorAndUnit;
20 class G4UIcommand;
21 
22 class eASTDetectorComponentMessenger: public G4UImessenger
23 {
24  public:
27  virtual void SetNewValue(G4UIcommand*,G4String);
28  virtual G4String GetCurrentValue(G4UIcommand*);
29 
30  public:
31  void SetUpBaseCommands(G4String);
32 
33  private:
35  G4UIcmdWithAnInteger* setupCmd;
36  G4UIcmdWith3VectorAndUnit* locCmd;
37  G4UIcommand* rotCmd;
38 };
39 
40 #endif
41