diff --git a/PWGUD/Tasks/upcEventITSROFcounter.cxx b/PWGUD/Tasks/upcEventITSROFcounter.cxx index 8c2f7ef5c4d..1da6fbfd26c 100644 --- a/PWGUD/Tasks/upcEventITSROFcounter.cxx +++ b/PWGUD/Tasks/upcEventITSROFcounter.cxx @@ -140,7 +140,6 @@ struct UpcEventITSROFcounter { } } - void processCounterPerRun(FullSGUDCollision const& coll) { @@ -150,12 +149,12 @@ struct UpcEventITSROFcounter { gapSide = trueGapSide; } - if (coll.flags() == 0){ - if (gapSide == 2){ + if (coll.flags() == 0) { + if (gapSide == 2) { histos.get(HIST("Runs/hStdModeCollDG"))->Fill(coll.runNumber()); - } else if (gapSide == 1){ + } else if (gapSide == 1) { histos.get(HIST("Runs/hStdModeCollSG1"))->Fill(coll.runNumber()); - } else if (gapSide == 0){ + } else if (gapSide == 0) { histos.get(HIST("Runs/hStdModeCollSG0"))->Fill(coll.runNumber()); } else { histos.get(HIST("Runs/hStdModeCollNG"))->Fill(coll.runNumber()); @@ -171,7 +170,6 @@ struct UpcEventITSROFcounter { histos.get(HIST("Runs/hUpcModeCollNG"))->Fill(coll.runNumber()); } } - } PROCESS_SWITCH(UpcEventITSROFcounter, processCounterPerITSROF, "Counts number of collisions per ITSROF", false);