Skip to content

Commit

Permalink
[mini] fix exportCSV (#327)
Browse files Browse the repository at this point in the history
This fixes an oversight in #326
  • Loading branch information
SeverinDiederichs authored Dec 16, 2024
1 parent 4fec3c6 commit f920239
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/IntegrationBenchmark/src/EventAction.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit f920239

Please sign in to comment.