We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a283dad commit 37c9905Copy full SHA for 37c9905
Detectors/ITSMFT/ITS/tracking/src/TrackingInterface.cxx
@@ -204,6 +204,9 @@ void ITSTrackingInterface::run(framework::ProcessingContext& pc)
204
// Run seeding vertexer
205
if (!compClusters.empty()) {
206
vertexerElapsedTime = mVertexer->clustersToVertices(logger);
207
+ // FIXME: this is a temporary stop-gap measure until we figure the rest out
208
+ const auto& vtx = mTimeFrame->getPrimaryVertices();
209
+ vertices.insert(vertices.begin(), vtx.begin(), vtx.end());
210
}
211
212
// const auto& multEstConf = FastMultEstConfig::Instance(); // parameters for mult estimation and cuts
0 commit comments