36 lines
687 B
C++
36 lines
687 B
C++
// This code implementation is the intellectual property of
|
|
// the GEANT4 collaboration.
|
|
//
|
|
// By copying, distributing or modifying the Program (or any work
|
|
// based on the Program) you indicate your acceptance of this statement,
|
|
// and all its terms.
|
|
//
|
|
|
|
#ifndef ExN06RunAction_h
|
|
#define ExN06RunAction_h 1
|
|
|
|
#include "globals.hh"
|
|
#include "G4UserRunAction.hh"
|
|
|
|
class G4Timer;
|
|
class G4Run;
|
|
|
|
class ExN06RunAction : public G4UserRunAction
|
|
{
|
|
public:
|
|
|
|
ExN06RunAction();
|
|
virtual ~ExN06RunAction();
|
|
|
|
public:
|
|
|
|
virtual void BeginOfRunAction(const G4Run* aRun);
|
|
virtual void EndOfRunAction(const G4Run* aRun);
|
|
|
|
private:
|
|
|
|
G4Timer* timer;
|
|
};
|
|
|
|
#endif /*ExN06RunAction_h*/
|