G4-ExampleB0/src/EventAction.cpp

14 lines
329 B
C++

#include "EventAction.h"
#include "G4Event.hh"
#include "G4RunManager.hh"
#include "RunAction.h"
EventAction::EventAction(RunAction* r) : fRunAction(r) {}
EventAction::~EventAction() {}
void EventAction::BeginOfEventAction(const G4Event* event) { }
void EventAction::EndOfEventAction(const G4Event* event) { }