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

31 lines
638 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 2.1 1998/07/12 03:08:32 urbi Exp $
// GEANT4 tag $Name: geant4-00 $
//
#ifndef G4UserRunAction_h
#define G4UserRunAction_h 1
class G4Run;
class G4UserRunAction
{
public:
G4UserRunAction();
virtual ~G4UserRunAction();
public:
virtual void BeginOfRunAction(G4Run* aRun);
virtual void EndOfRunAction(G4Run* aRun);
};
#endif