diff --git a/Detectors/ITSMFT/ITS/tracking/src/Vertexer.cxx b/Detectors/ITSMFT/ITS/tracking/src/Vertexer.cxx index 2acbec7fe8bc0..b4585929d2dcf 100644 --- a/Detectors/ITSMFT/ITS/tracking/src/Vertexer.cxx +++ b/Detectors/ITSMFT/ITS/tracking/src/Vertexer.cxx @@ -79,7 +79,6 @@ float Vertexer::clustersToVertices(LogFunc logger) // update LUT with all currently found vertices so in second iteration we can check vertPerROFThreshold sortVertices(); - mTimeFrame->updateROFVertexLookupTable(); } completed = true; } catch (const BoundedMemoryResource::MemoryLimitExceeded& err) { @@ -128,6 +127,8 @@ void Vertexer::sortVertices() } mc.swap(sortedMC); } + // update LUT after sorting + mTimeFrame->updateROFVertexLookupTable(); } template