diff --git a/Generators/include/Generators/AODToHepMC.h b/Generators/include/Generators/AODToHepMC.h index 426f9c223410b..aef738455d9ad 100644 --- a/Generators/include/Generators/AODToHepMC.h +++ b/Generators/include/Generators/AODToHepMC.h @@ -592,7 +592,8 @@ struct AODToHepMCPostRun { { } - void endOfStream() { + void endOfStream() + { if (ptr != nullptr) { ptr->postRun(); } diff --git a/run/o2aod_mc_to_hepmc.cxx b/run/o2aod_mc_to_hepmc.cxx index 73bf5b6475a22..230e3247821cf 100644 --- a/run/o2aod_mc_to_hepmc.cxx +++ b/run/o2aod_mc_to_hepmc.cxx @@ -53,21 +53,21 @@ struct AodToHepmc { /** Option for dumping HepMC event structures to disk. Takes one * argument - the name of the file to write to. */ o2::framework::Configurable dump{"hepmc-dump", "", - "Dump HepMC event to output"}; + "Dump HepMC event to output"}; /** Option for only storing particles from the event generator. * Note, if a particle is stored down, then its mothers will also * be stored. */ o2::framework::Configurable onlyGen{"hepmc-only-generated", false, - "Only export generated"}; + "Only export generated"}; /** Use HepMC's tree parsing for building event structure */ o2::framework::Configurable useTree{"hepmc-use-tree", false, - "Export as tree"}; + "Export as tree"}; /** Floating point precision used when writing to disk */ o2::framework::Configurable precision{"hepmc-precision", 8, - "Export precision in dump"}; + "Export precision in dump"}; /** Recenter event at IP=(0,0,0,0). */ o2::framework::Configurable recenter{"hepmc-recenter", false, - "Recenter the events at (0,0,0,0)"}; + "Recenter the events at (0,0,0,0)"}; } configs; /** Our converter */