#include "ExR02EventAction.hh" #include "G4Event.hh" #include "RecorderBase.hh" void ExR02EventAction::BeginOfEventAction(const G4Event* anEvent) { // Initiate record-keeping for this event. if (records != NULL) records->RecordBeginOfEvent(anEvent); } void ExR02EventAction::EndOfEventAction(const G4Event* anEvent) { // Terminate record-keeping for this event. if (records != NULL) records->RecordEndOfEvent(anEvent); }