Skip to content
Snippets Groups Projects
RunAction.cpp 245 B
Newer Older
#include "RunAction.h"

#include "G4Run.hh"

RunAction::RunAction() 
    : G4UserRunAction() {

}

RunAction::~RunAction() {

}

void 
RunAction::BeginOfRunAction(const G4Run* aRun)
{

}

void
RunAction::EndOfRunAction(const G4Run* aRun)
{

}