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

41 lines
769 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: ExN02RunAction.hh,v 1.2.8.1 1999/12/07 20:47:25 gunter Exp $
// GEANT4 tag $Name: geant4-01-00 $
//
//
#ifndef ExN02RunAction_h
#define ExN02RunAction_h 1
#include "G4UserRunAction.hh"
#include "globals.hh"
class G4Run;
class ExN02RunAction : public G4UserRunAction
{
public:
ExN02RunAction();
virtual ~ExN02RunAction();
public:
virtual void BeginOfRunAction(const G4Run* aRun);
virtual void EndOfRunAction(const G4Run* aRun);
private:
G4int runIDcounter;
};
#endif