Newer
Older
EventAction::EventAction(ToolHandleArray<IAnaElemTool>& anatools)
: G4UserEventAction(),
m_anaelemtools(anatools) {
}
EventAction::~EventAction() {
}
void
EventAction::BeginOfEventAction(const G4Event* anEvent) {
for (auto ana: m_anaelemtools) {
ana->BeginOfEventAction(anEvent);
}
EventAction::EndOfEventAction(const G4Event* anEvent) {
for (auto ana: m_anaelemtools) {
ana->EndOfEventAction(anEvent);
}