Skip to content

Commit f4de6bb

Browse files
alibuildktf
authored andcommitted
Please consider the following formatting changes
1 parent 07c24dc commit f4de6bb

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

Generators/include/Generators/AODToHepMC.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -592,7 +592,8 @@ struct AODToHepMCPostRun {
592592
{
593593
}
594594

595-
void endOfStream() {
595+
void endOfStream()
596+
{
596597
if (ptr != nullptr) {
597598
ptr->postRun();
598599
}

run/o2aod_mc_to_hepmc.cxx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,21 +53,21 @@ struct AodToHepmc {
5353
/** Option for dumping HepMC event structures to disk. Takes one
5454
* argument - the name of the file to write to. */
5555
o2::framework::Configurable<std::string> dump{"hepmc-dump", "",
56-
"Dump HepMC event to output"};
56+
"Dump HepMC event to output"};
5757
/** Option for only storing particles from the event generator.
5858
* Note, if a particle is stored down, then its mothers will also
5959
* be stored. */
6060
o2::framework::Configurable<bool> onlyGen{"hepmc-only-generated", false,
61-
"Only export generated"};
61+
"Only export generated"};
6262
/** Use HepMC's tree parsing for building event structure */
6363
o2::framework::Configurable<bool> useTree{"hepmc-use-tree", false,
64-
"Export as tree"};
64+
"Export as tree"};
6565
/** Floating point precision used when writing to disk */
6666
o2::framework::Configurable<int> precision{"hepmc-precision", 8,
67-
"Export precision in dump"};
67+
"Export precision in dump"};
6868
/** Recenter event at IP=(0,0,0,0). */
6969
o2::framework::Configurable<bool> recenter{"hepmc-recenter", false,
70-
"Recenter the events at (0,0,0,0)"};
70+
"Recenter the events at (0,0,0,0)"};
7171
} configs;
7272

7373
/** Our converter */

0 commit comments

Comments
 (0)