EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
eASTRun.hh
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file eASTRun.hh
1 // ********************************************************************
2 //
3 // eASTRun.hh
4 // Header file of Run class
5 //
6 // History
7 // September 8th, 2020 : first implementation
8 //
9 // ********************************************************************
10 
11 #ifndef eASTRun_h
12 #define eASTRun_h 1
13 
14 #include "G4Run.hh"
15 #include "G4Event.hh"
16 
17 #include "G4THitsMap.hh"
18 #include <vector>
19 
20 class eASTRunAction;
21 
22 class eASTRun : public G4Run {
23 
24 public:
26  virtual ~eASTRun();
27 
28 public:
29  virtual void RecordEvent(const G4Event*);
30  virtual void Merge(const G4Run*);
31 
32 private:
34 };
35 
36 #endif