Skip to content

Commit 08db6d6

Browse files
committed
Fix method name
1 parent b7e0f92 commit 08db6d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PWGHF/TableProducer/trackIndexSkimCreator.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1686,7 +1686,7 @@ struct HfTrackIndexSkimCreator {
16861686
/// \param cutStatus is a 2D array with outcome of each selection (filled only in debug mode)
16871687
/// \param isSelected ia s bitmap with selection outcome
16881688
template <typename T1, typename T2, typename T3, typename T4>
1689-
void applySelections2Prong(const T1& pVecCand, const T2& secVtx, const T3& primVtx, T4& cutStatus, int& isSelected)
1689+
void applySelection2Prong(const T1& pVecCand, const T2& secVtx, const T3& primVtx, T4& cutStatus, int& isSelected)
16901690
{
16911691
if (config.debug || isSelected > 0) {
16921692

@@ -2294,7 +2294,7 @@ struct HfTrackIndexSkimCreator {
22942294
pvCoord2Prong[1] = pvRefitCoord2Prong[1];
22952295
pvCoord2Prong[2] = pvRefitCoord2Prong[2];
22962296
}
2297-
applySelections2Prong(pVecCandProng2, secondaryVertex2, pvCoord2Prong, cutStatus2Prong, isSelected2ProngCand);
2297+
applySelection2Prong(pVecCandProng2, secondaryVertex2, pvCoord2Prong, cutStatus2Prong, isSelected2ProngCand);
22982298
if (is2ProngCandidateGoodFor3Prong && config.do3Prong == 1) {
22992299
is2ProngCandidateGoodFor3Prong = isTwoTrackVertexSelectedFor3Prongs(secondaryVertex2, pvCoord2Prong, df2);
23002300
}

0 commit comments

Comments
 (0)