Skip to content

Commit 4e7012d

Browse files
committed
fix o2-linter suggestions
1 parent 481457c commit 4e7012d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -873,7 +873,7 @@ struct FlowGenericFramework {
873873
// ----- nSigma PID -----
874874
// Map arrays into a 2D vector
875875
std::vector<std::vector<float>> nSigmaVals(6, std::vector<float>(3));
876-
for (size_t i = 0; i < 6; i++) {
876+
for (size_t i = 0; i < nSigmaVals.size(); i++) {
877877
nSigmaVals[i][0] = tpcNsigmaCut[i]; // TPC
878878
nSigmaVals[i][1] = tofNsigmaCut[i]; // TOF
879879
nSigmaVals[i][2] = itsNsigmaCut[i]; // ITS

0 commit comments

Comments
 (0)