diff --git a/PhysicsAnalysis/Algorithms/EgammaAnalysisAlgorithms/python/ElectronAnalysisSequence.py b/PhysicsAnalysis/Algorithms/EgammaAnalysisAlgorithms/python/ElectronAnalysisSequence.py index f5e63162778170bb03cf3ae1435e7f5cab94af87..f8721c64a42b8d020615adb58632eeb923e3b009 100644 --- a/PhysicsAnalysis/Algorithms/EgammaAnalysisAlgorithms/python/ElectronAnalysisSequence.py +++ b/PhysicsAnalysis/Algorithms/EgammaAnalysisAlgorithms/python/ElectronAnalysisSequence.py @@ -151,7 +151,7 @@ def makeElectronCalibrationSequence( seq, dataType, postfix = '', 'ElectronCalibrationAndSmearingAlg' + postfix ) addPrivateTool( alg, 'calibrationAndSmearingTool', 'CP::EgammaCalibrationAndSmearingTool' ) - alg.calibrationAndSmearingTool.ESModel = 'es2022_R21_Precision' + alg.calibrationAndSmearingTool.ESModel = 'es2018_R21_v0' alg.calibrationAndSmearingTool.decorrelationModel = '1NP_v1' if dataType == 'afii': alg.calibrationAndSmearingTool.useAFII = 1 diff --git a/PhysicsAnalysis/ElectronPhotonID/ElectronPhotonFourMomentumCorrection/Root/EgammaCalibrationAndSmearingTool.cxx b/PhysicsAnalysis/ElectronPhotonID/ElectronPhotonFourMomentumCorrection/Root/EgammaCalibrationAndSmearingTool.cxx index 0f9fb8becf73f7cdf284d62cae59e801c6f469fd..3c946c4f4f34fc1a1c34d4e5e90b2eb3c5e7d4ea 100644 --- a/PhysicsAnalysis/ElectronPhotonID/ElectronPhotonFourMomentumCorrection/Root/EgammaCalibrationAndSmearingTool.cxx +++ b/PhysicsAnalysis/ElectronPhotonID/ElectronPhotonFourMomentumCorrection/Root/EgammaCalibrationAndSmearingTool.cxx @@ -306,10 +306,10 @@ EgammaCalibrationAndSmearingTool::EgammaCalibrationAndSmearingTool(const std::st declareProperty("useLayer2Recalibration", m_useLayer2Recalibration = AUTO); declareProperty("useIntermoduleCorrection", m_useIntermoduleCorrection = AUTO); declareProperty("usePhiUniformCorrection", m_usePhiUniformCorrection = AUTO); - declareProperty("useCaloDistPhiUnifCorrection", m_useCaloDistPhiUnifCorrection = 0); + declareProperty("useCaloDistPhiUnifCorrection", m_useCaloDistPhiUnifCorrection = AUTO); declareProperty("useGainCorrection", m_useGainCorrection = AUTO); - declareProperty("doADCLinearityCorrection", m_doADCLinearityCorrection = 0); - declareProperty("doLeakageCorrection", m_doLeakageCorrection = 0); + declareProperty("doADCLinearityCorrection", m_doADCLinearityCorrection = AUTO); + declareProperty("doLeakageCorrection", m_doLeakageCorrection = AUTO); declareProperty("autoReseed", m_auto_reseed = true); declareProperty("MVAfolder", m_MVAfolder = ""); declareProperty("layerRecalibrationTune", m_layer_recalibration_tune = ""); @@ -523,49 +523,69 @@ StatusCode EgammaCalibrationAndSmearingTool::initialize() { if (m_useIntermoduleCorrection == AUTO) { m_useIntermoduleCorrection = use_intermodule_correction(m_TESModel); } if (m_usePhiUniformCorrection == AUTO) { m_usePhiUniformCorrection = use_phi_uniform_correction(m_TESModel); } m_use_mapping_correction = not is_run2(m_TESModel); - if (m_useGainCorrection == AUTO) { + if (m_useGainCorrection == AUTO && m_TESModel != egEnergyCorr::es2022_R21_Precision) { ATH_MSG_DEBUG("initializing gain tool"); m_gain_tool = gainToolFactory(m_TESModel).release(); m_useGainCorrection = bool(m_gain_tool); } + else if (m_useGainCorrection == AUTO && m_TESModel == egEnergyCorr::es2022_R21_Precision) + { + m_useGainCorrection = 1; + ATH_MSG_INFO("initializing gain tool for run2 final precision recommendations"); + std::string gain_tool_run_2_filename = + PathResolverFindCalibFile("ElectronPhotonFourMomentumCorrection/v25/gain_uncertainty_specialRun.root"); + m_gain_tool_run2.reset(new egGain::GainUncertainty(gain_tool_run_2_filename,"GainCorrection")); + m_gain_tool_run2->msg().setLevel(this->msg().level()); + m_rootTool->setApplyL2GainCorrection(); + } else if (m_useGainCorrection == 1) { if (m_TESModel != egEnergyCorr::es2022_R21_Precision) { m_useGainCorrection = 0; ATH_MSG_WARNING("cannot instantiate gain tool for this model (you can only disable the gain tool, but not enable it)"); } else { - ATH_MSG_DEBUG("initializing gain tool for run2 final precision recommendations"); + ATH_MSG_INFO("initializing gain tool for run2 final precision recommendations"); std::string gain_tool_run_2_filename = PathResolverFindCalibFile("ElectronPhotonFourMomentumCorrection/v25/gain_uncertainty_specialRun.root"); m_gain_tool_run2.reset(new egGain::GainUncertainty(gain_tool_run_2_filename,"GainCorrection")); m_gain_tool_run2->msg().setLevel(this->msg().level()); m_rootTool->setApplyL2GainCorrection(); } + } else if(m_useGainCorrection == 0 && m_TESModel == egEnergyCorr::es2022_R21_Precision){ + ATH_MSG_WARNING("es2022_R21_Precision recommendations use gain corrections for scale derivation. Disabling the GainCorrection flag will create inconsistency!"); } if (m_TESModel == egEnergyCorr::es2022_R21_Precision) { // ADC non linearity correction - if (m_doADCLinearityCorrection == 1) { + if (m_doADCLinearityCorrection == AUTO || m_doADCLinearityCorrection == 1) { + m_doADCLinearityCorrection = 1; std::string adcLinearityCorr_filename = PathResolverFindCalibFile("ElectronPhotonFourMomentumCorrection/v25/linearity_ADC.root"); m_ADCLinearity_tool.reset(new LinearityADC(adcLinearityCorr_filename)); m_ADCLinearity_tool->msg().setLevel(this->msg().level()); m_rootTool->setADCTool(m_ADCLinearity_tool); + } else { + ATH_MSG_WARNING("es2022_R21_Precision recommendations use ADC corrections for scale derivation. Disabling the ADCLinearity flag will create inconsistency!"); } // Leakage correction : the true argument is for pT interpolation - if (m_doLeakageCorrection == 1) { + if (m_doLeakageCorrection == AUTO || m_doLeakageCorrection== 1) { + m_doLeakageCorrection = 1; m_rootTool->setApplyLeakageCorrection(true); - } + } // Calo distortion phi unif correction - if (m_useCaloDistPhiUnifCorrection == 1) { + if (m_useCaloDistPhiUnifCorrection == AUTO || m_useCaloDistPhiUnifCorrection == 1) { + m_useCaloDistPhiUnifCorrection = 1; std::string phiUnifCorrfileName = PathResolverFindCalibFile("ElectronPhotonFourMomentumCorrection/v25/egammaEnergyCorrectionData.root"); std::unique_ptr<TFile> fCorr(TFile::Open(phiUnifCorrfileName.c_str(), "READ")); m_caloDistPhiUnifCorr.reset( dynamic_cast<TH2*>(fCorr->Get("CaloDistortionPhiUniformityCorrection/es2022_R21_Precision/h2DcorrPhiUnif"))); m_caloDistPhiUnifCorr->SetDirectory(nullptr); + } else { + ATH_MSG_WARNING("es2022_R21_Precision recommendations use CaloDistPhiUnif for scale derivation. Disabling the CaloDistPhiUnif flag will create inconsistency!"); } + } //No scale correction for release 21 ==> obsolete diff --git a/PhysicsAnalysis/ElectronPhotonID/ElectronPhotonFourMomentumCorrection/test/ut_ElectronPhotonFourMomentumCorrection_maintest.py b/PhysicsAnalysis/ElectronPhotonID/ElectronPhotonFourMomentumCorrection/test/ut_ElectronPhotonFourMomentumCorrection_maintest.py index 5ea8c225a330b92df584146d5029c55169c4518e..a747768e8a8c759374582176a3cff278da174b5d 100755 --- a/PhysicsAnalysis/ElectronPhotonID/ElectronPhotonFourMomentumCorrection/test/ut_ElectronPhotonFourMomentumCorrection_maintest.py +++ b/PhysicsAnalysis/ElectronPhotonID/ElectronPhotonFourMomentumCorrection/test/ut_ElectronPhotonFourMomentumCorrection_maintest.py @@ -414,7 +414,7 @@ class TestEgammaCalibrationAndSmearingTool(unittest.TestCase): # _test_list_syst("es2015PRE", "FULL_v1", None, None, 158) # _test_list_syst("es2015PRE", None, "FULL_v1", "FULL_v1", 158) # _test_list_syst("es2015PRE", None, None, None, 158) - _test_list_syst("es2022_R21_Precision", None, None, None, 156) + _test_list_syst("es2022_R21_Precision", None, None, None, 158) # these works, but generate FATALS, as expected # _test_list_syst("es2016PRE", "1NP_v1", "1NP_v1", "1NP_v1", [], success=False)