source: ELYSE/tags/v1r0/ELYSE/RunAction.hh @ 595

Last change on this file since 595 was 286, checked in by campagne, 18 years ago

ELYSE sauvegarde provisoire (JEC)

File size: 428 bytes
Line 
1#ifndef ELYSERunAction_h
2#define ELYSERunAction_h 1
3
4//Geant4
5#include "G4UserRunAction.hh"
6
7class G4Run;
8class G4Timer;
9
10namespace ELYSE {
11
12class RunActionMessenger;
13
14class RunAction : public G4UserRunAction {
15public:
16  RunAction();
17  virtual ~RunAction();
18
19public:
20  void BeginOfRunAction(const G4Run* aRun);
21  void EndOfRunAction(const G4Run* aRun);
22
23private:
24
25  RunActionMessenger* messenger;
26
27  G4Timer* timer;
28};
29}
30#endif
Note: See TracBrowser for help on using the repository browser.