Skip to content

Commit 611e8f0

Browse files
author
Mattia Faggin
committed
Fix.
1 parent 261f9c8 commit 611e8f0

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

PWGHF/D2H/Tasks/taskCharmPolarisation.cxx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -170,9 +170,9 @@ struct TaskPolarisationCharmHadrons {
170170
if (bdtScores.size() == 3) {
171171
// protect from empty vectors
172172
// the BDT output score might be empty if no preselections were enabled (selectionFlag null)
173-
outputMl[0] = candidate.bdtScores.at(0);
174-
outputMl[1] = candidate.bdtScores.at(1);
175-
outputMl[2] = candidate.bdtScores.at(2);
173+
outputMl[0] = bdtScores.at(0);
174+
outputMl[1] = bdtScores.at(1);
175+
outputMl[2] = bdtScores.at(2);
176176
}
177177
}
178178
} else if (iMass == charm_polarisation::MassHyposLcToPKPi::PiKP && candidate.isSelLcToPiKP() >= selectionFlagLcToPKPi) {
@@ -186,9 +186,9 @@ struct TaskPolarisationCharmHadrons {
186186
if (bdtScores.size() == 3) {
187187
// protect from empty vectors
188188
// the BDT output score might be empty if no preselections were enabled (selectionFlag null)
189-
outputMl[0] = candidate.bdtScores.at(0);
190-
outputMl[1] = candidate.bdtScores.at(1);
191-
outputMl[2] = candidate.bdtScores.at(2);
189+
outputMl[0] = bdtScores.at(0);
190+
outputMl[1] = bdtScores.at(1);
191+
outputMl[2] = bdtScores.at(2);
192192
}
193193
}
194194
}

0 commit comments

Comments
 (0)