From ae5e9c12d7f972cc174c26b21c7a55008aecd88b Mon Sep 17 00:00:00 2001 From: Miriam Calvo Gomez Date: Tue, 27 Jul 2021 15:50:05 +0200 Subject: [PATCH 1/2] Update neutral PID tools --- Hlt/RecoConf/python/RecoConf/protoparticles.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Hlt/RecoConf/python/RecoConf/protoparticles.py b/Hlt/RecoConf/python/RecoConf/protoparticles.py index 0993f66834f..c7e71f14f4b 100644 --- a/Hlt/RecoConf/python/RecoConf/protoparticles.py +++ b/Hlt/RecoConf/python/RecoConf/protoparticles.py @@ -40,7 +40,8 @@ def hypo_estimator(calo_pids): Hypo2Calo=CaloFutureHypo2CaloFuture( EcalDigitsLocation=calo_pids["digitsEcal"], HcalDigitsLocation=calo_pids["digitsHcal"]), - Pi0Separation=FutureGammaPi0SeparationTool(), + Pi0Separation=FutureGammaPi0SeparationTool( + DigitLocation=calo_pids["digitsEcal"]), Pi0SeparationXGB=FutureGammaPi0XGBoostTool( DigitLocation=calo_pids["digitsEcal"]), NeutralID=FutureNeutralIDTool(), -- GitLab From 166787f359badd3e5e0f2a973e5f87bdc757995a Mon Sep 17 00:00:00 2001 From: Miriam Calvo Gomez Date: Thu, 2 Sep 2021 16:25:41 +0200 Subject: [PATCH 2/2] update neutral PID code --- Hlt/RecoConf/python/RecoConf/protoparticles.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Hlt/RecoConf/python/RecoConf/protoparticles.py b/Hlt/RecoConf/python/RecoConf/protoparticles.py index c7e71f14f4b..3372ee4c9d8 100644 --- a/Hlt/RecoConf/python/RecoConf/protoparticles.py +++ b/Hlt/RecoConf/python/RecoConf/protoparticles.py @@ -37,11 +37,11 @@ def hypo_estimator(calo_pids): ClusterMatchLocation=calo_pids["clusterMatch"], ElectronMatchLocation=calo_pids["electronMatch"], BremMatchLocation=calo_pids["bremMatch"], + DigitLocation=calo_pids["digitsEcal"], Hypo2Calo=CaloFutureHypo2CaloFuture( EcalDigitsLocation=calo_pids["digitsEcal"], HcalDigitsLocation=calo_pids["digitsHcal"]), - Pi0Separation=FutureGammaPi0SeparationTool( - DigitLocation=calo_pids["digitsEcal"]), + Pi0Separation=FutureGammaPi0SeparationTool(), Pi0SeparationXGB=FutureGammaPi0XGBoostTool( DigitLocation=calo_pids["digitsEcal"]), NeutralID=FutureNeutralIDTool(), -- GitLab