sipm-characterisation 0.1.0
SiPM characterisation for ePIC — IV/DCR/gain, laser, readout, irradiation
Loading...
Searching...
No Matches
EventAction.hh
Go to the documentation of this file.
1#ifndef _EventAction_h_
2#define _EventAction_h_
3
4#include "G4UserEventAction.hh"
5
6class EventAction : public G4UserEventAction
7{
8
9public:
10
11 EventAction() = default;
12 ~EventAction() = default;
13
14 void BeginOfEventAction(const G4Event *aEvent) override;
15 void EndOfEventAction(const G4Event *aEvent) override;
16
17protected:
18
19};
20
21#endif
Definition EventAction.hh:7
EventAction()=default
~EventAction()=default
void EndOfEventAction(const G4Event *aEvent) override
Definition EventAction.cc:17
void BeginOfEventAction(const G4Event *aEvent) override
Definition EventAction.cc:7