diff --git a/PWGCF/Flow/Tasks/pidcme.cxx b/PWGCF/Flow/Tasks/pidcme.cxx index 887224f07e4..c6abfcc4b62 100644 --- a/PWGCF/Flow/Tasks/pidcme.cxx +++ b/PWGCF/Flow/Tasks/pidcme.cxx @@ -220,7 +220,7 @@ struct FillPIDcolums { for (int8_t i = 0; i < 3; i++) { if (selectionPid(track, i)) pidFlag = pidFlag * 10 + i + 1; - if (pidFlag > 10) { // If a track is identified as two different tracks. + if (pidFlag > 10) { // If a track is identified as two different tracks. if (std::abs(nSigmaArray[(pidFlag / 10) - 1]) < std::abs(nSigmaArray[(pidFlag % 10) - 1])) // The track is identified as the particle whose |nsigma| is the least. pidFlag /= 10; else @@ -719,4 +719,5 @@ WorkflowSpec defineDataProcessing(ConfigContext const& cfgc) adaptAnalysisTask(cfgc), adaptAnalysisTask(cfgc), }; -} \ No newline at end of file +} + \ No newline at end of file