You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: PWGCF/Flow/Tasks/pidcme.cxx
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@
13
13
/// \file pidcme.cxx
14
14
/// \brief task to calculate the pikp cme signal and bacground.
15
15
// C++/ROOT includes.
16
-
// o2-linter: disable=name/workflow-file
16
+
// o2-linter: disable=name/workflow-file
17
17
#include<chrono>
18
18
#include<string>
19
19
#include<vector>
@@ -222,7 +222,7 @@ struct FillPIDcolums {
222
222
for (int8_t i = 0; i < 3; i++) {
223
223
if (selectionPid(track, i))
224
224
pidFlag = pidFlag * 10 + i + 1;
225
-
if (pidFlag > 10) { // If a track is identified as two different tracks.
225
+
if (pidFlag > 10) { // If a track is identified as two different tracks.
226
226
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.
0 commit comments