From aec6ec600847be1e889dc5ba442a061c3303339a Mon Sep 17 00:00:00 2001 From: SeverinDiederichs Date: Mon, 16 Dec 2024 13:08:07 +0100 Subject: [PATCH] fix exportCSV --- examples/IntegrationBenchmark/src/EventAction.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/IntegrationBenchmark/src/EventAction.cc b/examples/IntegrationBenchmark/src/EventAction.cc index f08a2433..9a6a7734 100644 --- a/examples/IntegrationBenchmark/src/EventAction.cc +++ b/examples/IntegrationBenchmark/src/EventAction.cc @@ -156,7 +156,7 @@ void EventAction::EndOfEventAction(const G4Event *aEvent) if (!fRunAction->GetDoAccumulatedEvents()) { // Write data to output file. Validation data can take a lot of memory, and we don't need to aggregate // the results of multiple events at runtime, so for better performance it's easier to write the output here - // aTestManager->exportCSV(false); + aTestManager->exportCSV(false); } else { // overwrite to have all validation data written into a single line for all events aTestManager->exportCSV(true);