Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions PWGLF/Tasks/Resonances/f0980pbpbanalysis.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include <cmath>
#include <cstdlib>
// #include <iostream>
#include <iostream>

Check failure on line 24 in PWGLF/Tasks/Resonances/f0980pbpbanalysis.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[include-iostream]

Do not include iostream. Use O2 logging instead.
#include <memory>
#include <string>
#include <vector>
Expand Down Expand Up @@ -598,7 +598,7 @@
if (cfgPhiDeepAngleSel && !pairAngleSelection(trk1, trk2)) {
continue;
}

pion1 = ROOT::Math::PxPyPzMVector(trk1.px(), trk1.py(), trk1.pz(), massPtl);
pion2 = ROOT::Math::PxPyPzMVector(trk2.px(), trk2.py(), trk2.pz(), massPtl);
reco = pion1 + pion2;
Expand Down Expand Up @@ -701,8 +701,8 @@
if (hTotalEvents)
hTotalEvents->SetBinContent(1, static_cast<double>(nTotalEvents));
// std::cout << "Total number of events processed: " << nTotalEvents << std::endl;
}
}
}
PROCESS_SWITCH(F0980pbpbanalysis, processOnce, "fill Total nEvents once", true);

void init(o2::framework::InitContext&)
Expand Down
Loading