Skip to content
Merged
Show file tree
Hide file tree
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
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
2 changes: 1 addition & 1 deletion prodtests/full-system-test/dpl-workflow.sh
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ if [[ $BEAMTYPE == "cosmic" ]]; then
elif [[ $SYNCMODE == 1 ]]; then
[[ -z ${ITS_CONFIG+x} ]] && ITS_CONFIG=" --tracking-mode sync"
else
[[ -z ${ITS_CONFIG+x} ]] && ITS_CONFIG=" --tracking-mode async"
[[ -z ${ITS_CONFIG+x} ]] && ITS_CONFIG=" --tracking-mode async --ccdb-meanvertex-seed"
fi

if [[ $SYNCMODE == 1 ]] && [[ ${PRESCALE_ITS_WO_TRIGGER:-} != 1 ]]; then
Expand Down