EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Fun4AllMessenger.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file Fun4AllMessenger.h
1 #ifndef G4MAIN_FUN4ALLMESSENGER_H
2 #define G4MAIN_FUN4ALLMESSENGER_H
3 
4 #include <Geant4/G4UImessenger.hh>
5 
6 #include <Geant4/G4String.hh> // for G4String
7 
8 class Fun4AllServer;
9 class G4UIcmdWithAnInteger;
10 class G4UIcommand;
11 class G4UIdirectory;
12 
13 class Fun4AllMessenger: public G4UImessenger
14 {
15 public:
17  ~Fun4AllMessenger() override;
18 
19 void SetNewValue(G4UIcommand*, G4String) override;
20 
21 private:
22 
23  G4UIdirectory* m_Fun4AllDir;
24  G4UIcmdWithAnInteger* m_RunCmd;
26 };
27 
28 #endif