diff --git a/PWGUD/Tasks/FwdMuonsUPC.cxx b/PWGUD/Tasks/FwdMuonsUPC.cxx index 248facf6537..ba75cd267b0 100644 --- a/PWGUD/Tasks/FwdMuonsUPC.cxx +++ b/PWGUD/Tasks/FwdMuonsUPC.cxx @@ -16,18 +16,19 @@ /// \author Andrea Giovanni Riffero -#include -#include +#include "PWGUD/DataModel/UDTables.h" -#include "Framework/runDataProcessing.h" -#include "Framework/O2DatabasePDGPlugin.h" -#include "Framework/AnalysisTask.h" #include "Framework/AnalysisDataModel.h" -#include "PWGUD/DataModel/UDTables.h" +#include "Framework/AnalysisTask.h" +#include "Framework/O2DatabasePDGPlugin.h" +#include "Framework/runDataProcessing.h" #include "TLorentzVector.h" #include "TRandom3.h" +#include +#include + // table for saving tree with info on data namespace dimu { @@ -410,14 +411,14 @@ struct FwdMuonsUPC { } } - //select events with exactly 2 forward tracks + // select events with exactly 2 forward tracks if (cand.numContrib() != 2) { return; } // select opposite charge events only if (cand.netCharge() != 0) { - //registry.fill(HIST("hSameSign"), cand.numContrib()); + // registry.fill(HIST("hSameSign"), cand.numContrib()); return; } @@ -539,7 +540,7 @@ struct FwdMuonsUPC { { // check that all pairs are mu+mu- - if (std::abs(McPart1.pdgCode()) != kMuonPDG || std::abs(McPart2.pdgCode()) != kMuonPDG){ + if (std::abs(McPart1.pdgCode()) != kMuonPDG || std::abs(McPart2.pdgCode()) != kMuonPDG) { LOGF(debug, "PDG codes: %d | %d", McPart1.pdgCode(), McPart2.pdgCode()); return; } @@ -619,7 +620,7 @@ struct FwdMuonsUPC { // select opposite charge events only if (cand.netCharge() != 0) { - //registry.fill(HIST("hSameSign"), cand.numContrib()); + // registry.fill(HIST("hSameSign"), cand.numContrib()); return; }