// 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: ExN05EventAction.hh,v 2.2 1998/12/10 04:11:11 verderi Exp $ // GEANT4 tag $Name: geant4-00 $ // #ifndef ExN05EventAction_h #define ExN05EventAction_h 1 #include "G4UserEventAction.hh" #include "globals.hh" class G4Event; class ExN05EventAction : public G4UserEventAction { public: ExN05EventAction(); ~ExN05EventAction(); public: void BeginOfEventAction(); void EndOfEventAction(); private: G4int calorimeterCollID; G4int hadCalorimeterCollID; G4bool drawFlag; public: inline void SetDrawFlag(G4bool val) { drawFlag = val; }; }; #endif