CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
particleFlowClusterECAL_cfi.py
Go to the documentation of this file.
2 
3 #### PF CLUSTER ECAL ####
4 
5 #energy corrector for corrected cluster producer
6 _emEnergyCorrector = cms.PSet(
7  algoName = cms.string("PFClusterEMEnergyCorrector"),
8  applyCrackCorrections = cms.bool(False),
9  applyMVACorrections = cms.bool(True),
10  recHitsEBLabel = cms.InputTag('ecalRecHit', 'EcalRecHitsEB'),
11  recHitsEELabel = cms.InputTag('ecalRecHit', 'EcalRecHitsEE'),
12  autoDetectBunchSpacing = cms.bool(True),
13 )
14 
15 particleFlowClusterECAL = cms.EDProducer(
16  "CorrectedECALPFClusterProducer",
17  inputECAL = cms.InputTag("particleFlowClusterECALUncorrected"),
18  inputPS = cms.InputTag("particleFlowClusterPS"),
19  minimumPSEnergy = cms.double(0.0),
20  energyCorrector = _emEnergyCorrector
21  )
22