Skip to content

Commit 23d1210

Browse files
committed
Revert "Avoid premature loop termination in ITS vertexer"
This reverts commit 462abe1.
1 parent b051bab commit 23d1210

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Detectors/ITSMFT/ITS/tracking/src/VertexerTraits.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ void VertexerTraits<NLayers>::computeVertices(const int iteration)
361361
auto& cluster = clusters.emplace_back(iLine1, line1, iLine2, line2);
362362
if (!cluster.isValid() || cluster.getR2() > 4.f) {
363363
clusters.pop_back();
364-
continue;
364+
break;
365365
}
366366

367367
usedTracklets[iLine1] = 1;

0 commit comments

Comments
 (0)