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