Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:24:40

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from RecoEcal.EgammaClusterProducers.particleFlowSuperClusterECALMustache_cfi import particleFlowSuperClusterECALMustache as _particleFlowSuperClusterECALMustache
0004 
0005 # "Mustache" clustering
0006 particleFlowSuperClusterECALOnly = _particleFlowSuperClusterECALMustache.clone(
0007     # ECAL-only (no primary vertices) regression setup
0008     regressionConfig = dict(
0009         isHLT = True,
0010         eRecHitThreshold = 1.,
0011         regressionKeyEB  = 'pfscecal_EBCorrection_online',
0012         uncertaintyKeyEB = 'pfscecal_EBUncertainty_online',
0013         regressionKeyEE  = 'pfscecal_EECorrection_online',
0014         uncertaintyKeyEE = 'pfscecal_EEUncertainty_online',
0015         vertexCollection = '',
0016     ),
0017     # ECAL-only (no primary vertices) thresholds
0018     thresh_PFClusterBarrel = 0.5,
0019     thresh_PFClusterEndcap = 0.5,
0020     thresh_PFClusterES     = 0.5,
0021 )