Files
geant4/source/run/include/G4UserRunAction.hh
T
2016-06-08 15:09:25 +02:00

31 lines
654 B
C++

// This code implementation is the intellectual property of
// the RD44 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: G4UserRunAction.hh,v 1.2 1999/04/09 02:28:00 asaim Exp $
// GEANT4 tag $Name: geant4-00-01 $
//
#ifndef G4UserRunAction_h
#define G4UserRunAction_h 1
class G4Run;
class G4UserRunAction
{
public:
G4UserRunAction();
virtual ~G4UserRunAction();
public:
virtual void BeginOfRunAction(const G4Run* aRun);
virtual void EndOfRunAction(const G4Run* aRun);
};
#endif