File indexing completed on 2025-07-11 08:52:11
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