Skip to content

Commit 8b1e631

Browse files
committed
fix
1 parent abad8eb commit 8b1e631

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

EventFiltering/PWGHF/HFFilter.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -983,7 +983,7 @@ struct HfFilter { // Main struct for HF triggers
983983
if (!keepEvent[kPrCharm2P]) {
984984
// we first look for a D*+
985985
for (const auto& trackBachelorId : trackIdsThisCollision) { // start loop over tracks to find bachelor pion
986-
if (!isSelectedProtonFromLcResoOrThetaC<true>(trackProton)) {
986+
if (!helper.isSelectedProtonFromLcResoOrThetaC<true>(trackProton)) {
987987
continue;
988988
} // stop here if proton below pT threshold for thetaC to avoid computational losses
989989
auto trackBachelor = tracks.rawIteratorAt(trackBachelorId.trackId());
@@ -1068,7 +1068,7 @@ struct HfFilter { // Main struct for HF triggers
10681068
if (pt2Prong < cutsPtDeltaMassCharmReso->get(3u, 11u)) {
10691069
continue;
10701070
}
1071-
if (!isSelectedProtonFromLcResoOrThetaC(trackProton)) {
1071+
if (!helper.isSelectedProtonFromLcResoOrThetaC(trackProton)) {
10721072
continue;
10731073
}
10741074
float massLcStarCand{-999.}, massLcStarBarCand{-999.};

0 commit comments

Comments
 (0)