37 lines
721 B
C++
37 lines
721 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: ExN02EventAction.hh,v 1.2.8.1 1999/12/07 20:47:23 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-01-00 $
|
|
//
|
|
//
|
|
|
|
#ifndef ExN02EventAction_h
|
|
#define ExN02EventAction_h 1
|
|
|
|
#include "G4UserEventAction.hh"
|
|
|
|
class G4Event;
|
|
|
|
class ExN02EventAction : public G4UserEventAction
|
|
{
|
|
public:
|
|
ExN02EventAction();
|
|
~ExN02EventAction();
|
|
|
|
public:
|
|
void BeginOfEventAction(const G4Event*);
|
|
void EndOfEventAction(const G4Event*);
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|