Skip to content
Merged
Changes from 1 commit
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
6 changes: 3 additions & 3 deletions Detectors/ITSMFT/ITS/tracking/src/TrackingInterface.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -361,6 +361,9 @@ void ITSTrackingInterface::updateTimeDependentParams(framework::ProcessingContex
{
o2::base::GRPGeomHelper::instance().checkUpdates(pc);
static bool initOnceDone = false;
if (mOverrideBeamEstimation) {
pc.inputs().get<o2::dataformats::MeanVertexObject*>("meanvtx");
}
if (!initOnceDone) { // this params need to be queried only once
initOnceDone = true;
pc.inputs().get<o2::itsmft::TopologyDictionary*>("itscldict"); // just to trigger the finaliseCCDB
Expand Down Expand Up @@ -389,9 +392,6 @@ void ITSTrackingInterface::getConfiguration(framework::ProcessingContext& pc)
{
mVertexer->getGlobalConfiguration();
mTracker->getGlobalConfiguration();
if (mOverrideBeamEstimation) {
pc.inputs().get<o2::dataformats::MeanVertexObject*>("meanvtx");
}
}

void ITSTrackingInterface::finaliseCCDB(ConcreteDataMatcher& matcher, void* obj)
Expand Down