45 lines
935 B
C++
45 lines
935 B
C++
// This code implementation is the intellectual property of
|
|
// the RD44 GEANT4 collaboration.
|
|
//
|
|
// By copying, distributing or modifying the Program (or any work
|
|
// based on the Program) you indicate your acceptance of this statement,
|
|
// and all its terms.
|
|
//
|
|
// $Id: MyRunAction.cc,v 2.2 1998/07/13 17:29:45 urbi Exp $
|
|
// GEANT4 tag $Name: geant4-00 $
|
|
//
|
|
|
|
#include "MyRunAction.hh"
|
|
|
|
#include "G4Run.hh"
|
|
#include "G4UImanager.hh"
|
|
#include "G4ios.hh"
|
|
|
|
MyRunAction::MyRunAction()
|
|
{
|
|
timer = new G4Timer;
|
|
runIDcounter = 0;
|
|
}
|
|
|
|
MyRunAction::~MyRunAction()
|
|
{
|
|
delete timer;
|
|
}
|
|
|
|
void MyRunAction::BeginOfRunAction(G4Run* aRun)
|
|
{
|
|
aRun->SetRunID(runIDcounter++);
|
|
aRun->transient(true);
|
|
|
|
G4cout << "### Run " << aRun->GetRunID() << " start." << endl;
|
|
timer->Start();
|
|
}
|
|
|
|
void MyRunAction::EndOfRunAction(G4Run* aRun)
|
|
{
|
|
timer->Stop();
|
|
G4cout << "number of event = " << aRun->GetNumberOfEvent()
|
|
<< " " << *timer << endl;
|
|
}
|
|
|