We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 481457c commit 4e7012dCopy full SHA for 4e7012d
1 file changed
PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx
@@ -873,7 +873,7 @@ struct FlowGenericFramework {
873
// ----- nSigma PID -----
874
// Map arrays into a 2D vector
875
std::vector<std::vector<float>> nSigmaVals(6, std::vector<float>(3));
876
- for (size_t i = 0; i < 6; i++) {
+ for (size_t i = 0; i < nSigmaVals.size(); i++) {
877
nSigmaVals[i][0] = tpcNsigmaCut[i]; // TPC
878
nSigmaVals[i][1] = tofNsigmaCut[i]; // TOF
879
nSigmaVals[i][2] = itsNsigmaCut[i]; // ITS
0 commit comments