From 362e54c32808c503ea1bf351140f361a95286481 Mon Sep 17 00:00:00 2001 From: Emanuele Di Marco Date: Thu, 12 Mar 2015 15:20:07 +0100 Subject: [PATCH 1/2] re-enable the kOutOfTime filtering of PF-rechits (needed to complete the ECAL spike rejection together with the topological cuts) enable the usage of the EAL rechits recovered in case of dead trigger towers (new algorithm for the recovery in place) --- .../python/particleFlowRecHitECAL_cfi.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/RecoParticleFlow/PFClusterProducer/python/particleFlowRecHitECAL_cfi.py b/RecoParticleFlow/PFClusterProducer/python/particleFlowRecHitECAL_cfi.py index 981bd8ae400bd..3d7ba62396057 100644 --- a/RecoParticleFlow/PFClusterProducer/python/particleFlowRecHitECAL_cfi.py +++ b/RecoParticleFlow/PFClusterProducer/python/particleFlowRecHitECAL_cfi.py @@ -23,9 +23,9 @@ cms.PSet( name = cms.string("PFRecHitQTestECAL"), cleaningThreshold = cms.double(2.0), - timingCleaning = cms.bool(False), + timingCleaning = cms.bool(True), topologicalCleaning = cms.bool(True), - skipTTRecoveredHits = cms.bool(True) + skipTTRecoveredHits = cms.bool(False) ) ) ), @@ -40,9 +40,9 @@ cms.PSet( name = cms.string("PFRecHitQTestECAL"), cleaningThreshold = cms.double(2.0), - timingCleaning = cms.bool(False), + timingCleaning = cms.bool(True), topologicalCleaning = cms.bool(True), - skipTTRecoveredHits = cms.bool(True) + skipTTRecoveredHits = cms.bool(False) ) ) ) From 7c03b9efde591028be1a9e5121012ce65b2e7144 Mon Sep 17 00:00:00 2001 From: Emanuele Di Marco Date: Fri, 13 Mar 2015 22:11:30 +0100 Subject: [PATCH 2/2] do one step at the time. First just do a PR with the fix of the kOOT filtering --- .../PFClusterProducer/python/particleFlowRecHitECAL_cfi.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RecoParticleFlow/PFClusterProducer/python/particleFlowRecHitECAL_cfi.py b/RecoParticleFlow/PFClusterProducer/python/particleFlowRecHitECAL_cfi.py index 3d7ba62396057..541e5bd74f4ff 100644 --- a/RecoParticleFlow/PFClusterProducer/python/particleFlowRecHitECAL_cfi.py +++ b/RecoParticleFlow/PFClusterProducer/python/particleFlowRecHitECAL_cfi.py @@ -25,7 +25,7 @@ cleaningThreshold = cms.double(2.0), timingCleaning = cms.bool(True), topologicalCleaning = cms.bool(True), - skipTTRecoveredHits = cms.bool(False) + skipTTRecoveredHits = cms.bool(True) ) ) ), @@ -42,7 +42,7 @@ cleaningThreshold = cms.double(2.0), timingCleaning = cms.bool(True), topologicalCleaning = cms.bool(True), - skipTTRecoveredHits = cms.bool(False) + skipTTRecoveredHits = cms.bool(True) ) ) )