From c1017a606e571358b4c0d8ab067ffdd387f3e5a1 Mon Sep 17 00:00:00 2001 From: adrien-matta <a.matta@surrey.ac.uk> Date: Mon, 12 Jan 2015 11:41:11 +0000 Subject: [PATCH] * Change Event action printing of event to cout instead of G4cout so * Update happen during calculation time --- NPSimulation/src/EventAction.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NPSimulation/src/EventAction.cc b/NPSimulation/src/EventAction.cc index b98e6a2cb..10591fa51 100644 --- a/NPSimulation/src/EventAction.cc +++ b/NPSimulation/src/EventAction.cc @@ -51,7 +51,7 @@ EventAction::~EventAction(){ //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... void EventAction::BeginOfEventAction(const G4Event* event){ if ((event->GetEventID() + 1) % m_printModulo == 0) - G4cout << "\rEvent: " << event->GetEventID() + 1 << flush; + cout << "\rEvent: " << event->GetEventID() + 1 << flush; } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... -- GitLab