Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2024-09-27 07:02:42

0001 // ********************************************************************
0002 //
0003 // eASTEventAction.hh
0004 //   Header file of eAST Event Action class 
0005 //
0006 // History
0007 //   May 8th, 2021 : first implementation
0008 //
0009 // ********************************************************************
0010 
0011 #ifndef eASTEventAction_h
0012 #define eASTEventAction_h 1
0013 
0014 #include "G4UserEventAction.hh"
0015 #include "globals.hh"
0016 
0017 class G4Event;
0018     
0019 class eASTEventAction : public G4UserEventAction
0020 {
0021   public:
0022     eASTEventAction();
0023     virtual ~eASTEventAction();
0024 
0025     virtual void BeginOfEventAction(const G4Event*);
0026     virtual void   EndOfEventAction(const G4Event*);
0027 
0028 };
0029 
0030 #endif