From 2b9c3b7bb5486a8526f880eb431035213322e97e Mon Sep 17 00:00:00 2001 From: christos Date: Wed, 19 Feb 2020 23:15:36 +0000 Subject: [PATCH] Lower (slightly) the cuts for seeding GSF/Brem refits --- .../InDetRecExample/share/InDetRecCaloSeededROISelection.py | 4 ++-- .../egamma/egammaAlgs/python/egammaSelectedTrackCopy.py | 4 ++-- .../egamma/egammaAlgs/python/egammaSelectedTrackCopyConfig.py | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/InnerDetector/InDetExample/InDetRecExample/share/InDetRecCaloSeededROISelection.py b/InnerDetector/InDetExample/InDetRecExample/share/InDetRecCaloSeededROISelection.py index feef8c1c0f7..76465f4f6ec 100644 --- a/InnerDetector/InDetExample/InDetRecExample/share/InDetRecCaloSeededROISelection.py +++ b/InnerDetector/InDetExample/InDetRecExample/share/InDetRecCaloSeededROISelection.py @@ -14,10 +14,10 @@ from egammaCaloTools import egammaCaloToolsConf egammaCaloClusterROISelector = ToolFactory( egammaCaloToolsConf.egammaCaloClusterSelector, name = 'caloClusterROISelector', egammaCheckEnergyDepositTool = egammaCheckEnergyDepositTool, - EMEtCut = 2300., + EMEtCut = 2200., EMFCut = 0.7, RetaCut = 0.65, - HadLeakCut = 0.14 + HadLeakCut = 0.15 ) # # --- get the builder tool diff --git a/Reconstruction/egamma/egammaAlgs/python/egammaSelectedTrackCopy.py b/Reconstruction/egamma/egammaAlgs/python/egammaSelectedTrackCopy.py index 179ef1fb13f..20bde4b91dc 100644 --- a/Reconstruction/egamma/egammaAlgs/python/egammaSelectedTrackCopy.py +++ b/Reconstruction/egamma/egammaAlgs/python/egammaSelectedTrackCopy.py @@ -13,13 +13,13 @@ from egammaCaloTools import egammaCaloToolsConf egammaCaloClusterGSFSelector = ToolFactory(egammaCaloToolsConf.egammaCaloClusterSelector, name='caloClusterGSFSelector', - EMEtCut=2300., + EMEtCut=2200., EMEtSplittingFraction = 0.7, EMFCut=0.5, # 3x7/7x7=0.429. Below this # there is more energy outside the # 3x7 core than inside - RetaCut=0.43 + RetaCut=0.42 ) egammaSelectedTrackCopy = AlgFactory(egammaAlgsConf.egammaSelectedTrackCopy, diff --git a/Reconstruction/egamma/egammaAlgs/python/egammaSelectedTrackCopyConfig.py b/Reconstruction/egamma/egammaAlgs/python/egammaSelectedTrackCopyConfig.py index 131819f39a0..5d3b9562113 100644 --- a/Reconstruction/egamma/egammaAlgs/python/egammaSelectedTrackCopyConfig.py +++ b/Reconstruction/egamma/egammaAlgs/python/egammaSelectedTrackCopyConfig.py @@ -19,13 +19,13 @@ def egammaSelectedTrackCopyCfg(flags, name='egammaSelectedTrackCopy', **kwargs): if "egammaCaloClusterSelector" not in kwargs: egammaCaloClusterGSFSelector = egammaCaloClusterSelector(name='caloClusterGSFSelector', - EMEtCut=2300., + EMEtCut=2200., EMEtSplittingFraction = 0.7, EMFCut=0.5, # 3x7/7x7=0.429. Below this # there is more energy outside the # 3x7 core than inside - RetaCut=0.43 + RetaCut=0.42 ) kwargs["egammaCaloClusterSelector"] = egammaCaloClusterGSFSelector -- GitLab