OMSim
Geant4 for IceCube optical module studies
effective_area/include/OMSimEventAction.hh
1 #pragma once
2 
3 #include "G4UserEventAction.hh"
4 #include <string>
5 #include "G4Types.hh"
6 
7 class G4Event;
8 
9 class OMSimEventAction : public G4UserEventAction
10 {
11  public:
12  OMSimEventAction(){};
13  ~OMSimEventAction(){};
14 
15  public:
16 
17  void BeginOfEventAction(const G4Event*);
18  void EndOfEventAction(const G4Event*);
19 
20  private:
21 };
Handles custom actions at the beginning and end of each event.
Definition: effective_area/include/OMSimEventAction.hh:10
void EndOfEventAction(const G4Event *)
Custom actions at the end of the event.
Definition: effective_area/src/OMSimEventAction.cc:8