From 51eb4817cf1d87ddf49396f82fce0c2dea19d292 Mon Sep 17 00:00:00 2001 From: Ruggero Turra <ruggero.turra@cern.ch> Date: Tue, 21 Jun 2016 15:49:01 +0200 Subject: [PATCH] fix temperature run number (ElectronPhotonFourMomentumCorrection-00-02-11) * Fix bug in temperature extrapolation 2016 which was corrected only when run number was the one for run2 data. As usual we apply systematics on mc * Tag ElectronPhotonFourMomentumCorrection-00-02-11 2016-06-17 Ruggero Turra <ruggero.turra@cern.ch> * Fix temperature extrapolation 2016 (factor 100) * Tag ElectronPhotonFourMomentumCorrection-00-02-10 Former-commit-id: cb4f7fa621cdf14cb6aba30bdb82082aa08fcc51 --- .../Root/egammaEnergyCorrectionTool.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/PhysicsAnalysis/ElectronPhotonID/ElectronPhotonFourMomentumCorrection/Root/egammaEnergyCorrectionTool.cxx b/PhysicsAnalysis/ElectronPhotonID/ElectronPhotonFourMomentumCorrection/Root/egammaEnergyCorrectionTool.cxx index e37f29af479..57e0be92dad 100644 --- a/PhysicsAnalysis/ElectronPhotonID/ElectronPhotonFourMomentumCorrection/Root/egammaEnergyCorrectionTool.cxx +++ b/PhysicsAnalysis/ElectronPhotonID/ElectronPhotonFourMomentumCorrection/Root/egammaEnergyCorrectionTool.cxx @@ -1855,9 +1855,9 @@ namespace AtlasRoot { m_use_temp_correction201516) { // special case for es2016PRE (extrapolation from 2015) - const double sign = (var == egEnergyCorr::Scale::LArTemperature2016PreUp) ? 1 : -1; - // temp + pileup - value += qsum(0.02, 0.02) * sign; // Guillaume email 23/05/2016 + 26/5/2013 + const double sign = (var == egEnergyCorr::Scale::LArTemperature2016PreUp) ? 1 : -1; + // temp + pileup + value += qsum(0.05E-2, 0.02E-2) * sign; // Guillaume email 23/05/2016 + 26/5/2016 } -- GitLab