From 6f35e6e74fc6dff7c77e15ae1f5e5678e61f5a3c Mon Sep 17 00:00:00 2001 From: Matthias Kleiner Date: Wed, 17 Jun 2026 08:34:34 +0200 Subject: [PATCH] TPC: scale VDrift for every TF with TP --- Detectors/TPC/calibration/src/VDriftHelper.cxx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Detectors/TPC/calibration/src/VDriftHelper.cxx b/Detectors/TPC/calibration/src/VDriftHelper.cxx index dc8f46af06828..014543455c5b7 100644 --- a/Detectors/TPC/calibration/src/VDriftHelper.cxx +++ b/Detectors/TPC/calibration/src/VDriftHelper.cxx @@ -164,10 +164,6 @@ void VDriftHelper::extractCCDBInputs(ProcessingContext& pc, bool laser, bool its mIsTPScalingPossible = (vd.refTP > 0) || extractTPForVDrift(vd); } if (mIsTPScalingPossible) { - // if no new VDrift object was loaded and if delta TP is small, do not rescale and return - if (!mUpdated && std::abs(tp - vd.refTP) < 1e-5) { - return; - } mUpdated = true; vd.normalize(0, tp); if (vd.creationTime == saveVD.creationTime) {