Skip to content
Snippets Groups Projects
EventAction.cpp 307 B
Newer Older
#include "EventAction.h"

EventAction::EventAction(ToolHandleArray<IAnaElemTool>& anatools) 
    : G4UserEventAction(),
      m_anaelemtools(anatools) {

}

EventAction::~EventAction() {

}

void
EventAction::BeginOfEventAction(const G4Event*) {

}

void
EventAction::EndOfEventAction(const G4Event*) {

}