// 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.3 1999/12/15 14:49:20 gunter Exp $ // GEANT4 tag $Name: geant4-01-01 $ // // #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