Files
geant4/examples/novice/N04/include/ExN04EventAction.hh
T
2016-06-08 15:09:25 +02:00

27 lines
428 B
C++

#ifndef ExN04EventAction_h
#define ExN04EventAction_h 1
#include "G4UserEventAction.hh"
#include "globals.hh"
class ExN04EventAction : public G4UserEventAction
{
public:
ExN04EventAction();
~ExN04EventAction();
public:
void BeginOfEventAction(const G4Event*);
void EndOfEventAction(const G4Event*);
private:
G4int trackerCollID;
G4int calorimeterCollID;
G4int muonCollID;
};
#endif