You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (rejectTrack(idpos, 1)) { // skip at the moment TPC only tracks
97
+
if (selQ[ipos] != 1) {
97
98
continue;
98
99
}
100
+
auto idpos = trackIndex[ipos];
99
101
bool ambiguousPos = idpos.isAmbiguous(); // is this track compatible also with other vertex?
100
-
constauto& trPos = tracksPool.getTrack(idpos);
102
+
constauto& trPos = tracksPool.get(idpos);
101
103
102
104
for (int ineg = first; ineg < last; ineg++) {
103
-
auto idneg = trackIndex[ineg];
104
-
if (rejectTrack(idneg, -1)) { // skip at the moment TPC only tracks
105
+
if (selQ[ineg] != -1) {
105
106
continue;
106
107
}
108
+
auto idneg = trackIndex[ineg];
107
109
count++;
108
110
bool accept = false, newPair = true, ambiguousV0 = ambiguousPos && idneg.isAmbiguous(); // V0 is ambiguous if both tracks are compatible with other vertices
0 commit comments