Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:18:20

0001 
0002 #ifndef _CHERENKOV_STACKING_ACTION_
0003 #define _CHERENKOV_STACKING_ACTION_
0004 
0005 #include "G4UserStackingAction.hh"
0006 
0007 class CherenkovEvent;
0008 class TTree;
0009 
0010 class CherenkovStackingAction : public G4UserStackingAction
0011 {
0012   public:
0013   CherenkovStackingAction(CherenkovEvent *event, TTree *tree);
0014   ~CherenkovStackingAction() {};
0015 
0016   void NewStage();
0017   void PrepareNewEvent();
0018 
0019  private:
0020   CherenkovEvent *m_EventPtr;
0021   TTree *m_Tree;
0022 };
0023 
0024 #endif