33 lines
767 B
C++
33 lines
767 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: AnaEx01RunAction.hh,v 1.3 2000/11/10 14:12:07 gbarrand Exp $
|
|
// GEANT4 tag $Name: geant4-03-01 $
|
|
//
|
|
//
|
|
|
|
#ifndef AnaEx01RunAction_h
|
|
#define AnaEx01RunAction_h
|
|
|
|
#include "G4UserRunAction.hh"
|
|
|
|
class AnaEx01AnalysisManager;
|
|
|
|
class AnaEx01RunAction : public G4UserRunAction {
|
|
public:
|
|
AnaEx01RunAction(AnaEx01AnalysisManager* = 0);
|
|
~AnaEx01RunAction();
|
|
public:
|
|
void BeginOfRunAction(const G4Run*);
|
|
void EndOfRunAction(const G4Run*);
|
|
private:
|
|
AnaEx01AnalysisManager* fAnalysisManager;
|
|
};
|
|
|
|
#endif
|
|
|