CMS 3D CMS Logo

particleFlowSuperClusterECALOnly_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from RecoEcal.EgammaClusterProducers.particleFlowSuperClusterECALMustache_cfi import particleFlowSuperClusterECALMustache as _particleFlowSuperClusterECALMustache
4 
5 # "Mustache" clustering
6 particleFlowSuperClusterECALOnly = _particleFlowSuperClusterECALMustache.clone(
7  # ECAL-only (no primary vertices) regression setup
8  regressionConfig = dict(
9  isHLT = True,
10  eRecHitThreshold = 1.,
11  regressionKeyEB = 'pfscecal_EBCorrection_online',
12  uncertaintyKeyEB = 'pfscecal_EBUncertainty_online',
13  regressionKeyEE = 'pfscecal_EECorrection_online',
14  uncertaintyKeyEE = 'pfscecal_EEUncertainty_online',
15  vertexCollection = '',
16  ),
17  # ECAL-only (no primary vertices) thresholds
18  thresh_PFClusterBarrel = 0.5,
19  thresh_PFClusterEndcap = 0.5,
20  thresh_PFClusterES = 0.5,
21 )
particleFlowSuperClusterECALMustache_cfi