OMSim
Geant4 for IceCube optical module studies
Loading...
Searching...
No Matches
wavepid/include/OMSimEventAction.hh
Go to the documentation of this file.
1
5#pragma once
6
7#include "G4UserEventAction.hh"
8#include <string>
9#include "G4Types.hh"
10
11class G4Event;
12
13class OMSimEventAction : public G4UserEventAction
14{
15public:
16 OMSimEventAction() = default;
17 ~OMSimEventAction() = default;
18
19 void BeginOfEventAction(const G4Event* event) override;
20 void EndOfEventAction(const G4Event* event) override;
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