Skip to content

Commit e97e40c

Browse files
committed
ITS: fix truth seeding mode
Signed-off-by: Felix Schlepper <felix.schlepper@cern.ch>
1 parent 76df530 commit e97e40c

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
@@ -82,7 +82,6 @@ float Vertexer<NLayers>::clustersToVertices(LogFunc logger)
8282

8383
// update LUT with all currently found vertices so in second iteration we can check vertPerROFThreshold
8484
sortVertices();
85-
mTimeFrame->updateROFVertexLookupTable();
8685
}
8786
} catch (const BoundedMemoryResource::MemoryLimitExceeded& err) {
8887
handleException(err);
@@ -126,6 +125,8 @@ void Vertexer<NLayers>::sortVertices()
126125
}
127126
mc.swap(sortedMC);
128127
}
128+
// update LUT after sorting
129+
mTimeFrame->updateROFVertexLookupTable();
129130
}
130131

131132
template <int NLayers>

0 commit comments

Comments
 (0)