Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /pfRICH/share/include/RunAction.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 
0002 #ifndef _PFRICH_RUN_ACTION_
0003 #define _PFRICH_RUN_ACTION_
0004 
0005 #include "globals.hh"
0006 #include "G4UserRunAction.hh"
0007 
0008 class G4Timer;
0009 class G4Run;
0010 
0011 class RunAction : public G4UserRunAction
0012 {
0013   public:
0014     RunAction();
0015     virtual ~RunAction();
0016 
0017   public:
0018     virtual void BeginOfRunAction(const G4Run* aRun);
0019     virtual void EndOfRunAction(const G4Run* aRun);
0020 
0021   private:
0022     G4Timer* fTimer;
0023 };
0024 
0025 #endif