Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Detectors/ITSMFT/ITS/tracking/src/Vertexer.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ float Vertexer<NLayers>::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) {
Expand Down Expand Up @@ -128,6 +127,8 @@ void Vertexer<NLayers>::sortVertices()
}
mc.swap(sortedMC);
}
// update LUT after sorting
mTimeFrame->updateROFVertexLookupTable();
}

template <int NLayers>
Expand Down