Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2024-06-26 07:05:25

0001 // ********************************************************************
0002 //
0003 // eASTStackingAction.hh
0004 //   Header file of eAST Stacking Action class 
0005 //
0006 // History
0007 //   May 8th, 2021 : first implementation
0008 //
0009 // ********************************************************************
0010 
0011 #ifndef eASTStackingAction_h
0012 #define eASTStackingAction_h 1
0013 
0014 #include "G4UserStackingAction.hh"
0015 #include "globals.hh"
0016 
0017 class G4Track;
0018     
0019 class eASTStackingAction : public G4UserStackingAction
0020 {
0021   public:
0022     eASTStackingAction();
0023     virtual ~eASTStackingAction();
0024 
0025     virtual G4ClassificationOfNewTrack ClassifyNewTrack(const G4Track*);
0026     virtual void NewStage();
0027     virtual void PrepareNewEvent();
0028 
0029 };
0030 
0031 #endif