From f920239f0c3775fe8d51b71fe933ff6b86a1c7f1 Mon Sep 17 00:00:00 2001 From: Severin Diederichs <65728274+SeverinDiederichs@users.noreply.github.com> Date: Mon, 16 Dec 2024 13:19:00 +0100 Subject: [PATCH] [mini] fix exportCSV (#327) This fixes an oversight in #326 --- 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);