Files
geant4/examples/novice/N05/include/ExN05RunAction.hh
T
2016-06-08 15:28:20 +02:00

37 lines
755 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.
//
// $Id: ExN05RunAction.hh,v 1.4.8.1 1999/12/07 20:47:34 gunter Exp $
// GEANT4 tag $Name: geant4-01-00 $
//
#ifndef ExN05RunAction_h
#define ExN05RunAction_h 1
#include "G4Timer.hh"
#include "globals.hh"
#include "G4UserRunAction.hh"
class G4Run;
class ExN05RunAction : public G4UserRunAction
{
public:
ExN05RunAction();
~ExN05RunAction();
public:
void BeginOfRunAction(const G4Run* aRun);
void EndOfRunAction(const G4Run* aRun);
private:
G4Timer* timer;
};
#endif