sipm-characterisation 0.1.0
SiPM characterisation for ePIC — IV/DCR/gain, laser, readout, irradiation
Loading...
Searching...
No Matches
RunAction.hh
Go to the documentation of this file.
1#ifndef _RunAction_h_
2#define _RunAction_h_
3
4#include "G4UserRunAction.hh"
5
6class TFile;
7class TTree;
8
9class RunAction : public G4UserRunAction
10{
11
12public:
13
14 RunAction() = default;
15 ~RunAction() override;
16
17 void BeginOfRunAction(const G4Run *run) override;
18 void EndOfRunAction(const G4Run *run) override;
19
20protected:
21
22};
23
24#endif
Definition RunAction.hh:10
void BeginOfRunAction(const G4Run *run) override
Definition RunAction.cc:15
void EndOfRunAction(const G4Run *run) override
Definition RunAction.cc:27
~RunAction() override
Definition RunAction.cc:8
RunAction()=default