EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
eASTEventAction.hh
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file eASTEventAction.hh
1 // ********************************************************************
2 //
3 // eASTEventAction.hh
4 // Header file of eAST Event Action class
5 //
6 // History
7 // May 8th, 2021 : first implementation
8 //
9 // ********************************************************************
10 
11 #ifndef eASTEventAction_h
12 #define eASTEventAction_h 1
13 
14 #include "G4UserEventAction.hh"
15 #include "globals.hh"
16 
17 class G4Event;
18 
19 class eASTEventAction : public G4UserEventAction
20 {
21  public:
23  virtual ~eASTEventAction();
24 
25  virtual void BeginOfEventAction(const G4Event*);
26  virtual void EndOfEventAction(const G4Event*);
27 
28 };
29 
30 #endif