Skip to content

Commit b1d5773

Browse files
Correct the typo when looping over goodNegTracks (#4391)
The finder was looping twice over goodPosTracks
1 parent cab993b commit b1d5773

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Analysis/Tasks/PWGLF/lambdakzerofinder.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ struct lambdakzerofinder {
113113
continue;
114114
if (t0.tpcNClsCrossedRows() < 70)
115115
continue;
116-
for (auto& t1 : goodPosTracks) {
116+
for (auto& t1 : goodNegTracks) {
117117
auto thisdcanegtopv = getdcaXY(t1, pVtx);
118118
if (thisdcanegtopv < dcanegtopv)
119119
continue;

0 commit comments

Comments
 (0)