Skip to content

Commit 972ebeb

Browse files
committed
ITS: fix truth seeding mode
Signed-off-by: Felix Schlepper <felix.schlepper@cern.ch>
1 parent 0528e00 commit 972ebeb

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ float Vertexer<NLayers>::clustersToVertices(LogFunc logger)
7979

8080
// update LUT with all currently found vertices so in second iteration we can check vertPerROFThreshold
8181
sortVertices();
82-
mTimeFrame->updateROFVertexLookupTable();
8382
}
8483
completed = true;
8584
} catch (const BoundedMemoryResource::MemoryLimitExceeded& err) {
@@ -128,6 +127,8 @@ void Vertexer<NLayers>::sortVertices()
128127
}
129128
mc.swap(sortedMC);
130129
}
130+
// update LUT after sorting
131+
mTimeFrame->updateROFVertexLookupTable();
131132
}
132133

133134
template <int NLayers>

0 commit comments

Comments
 (0)