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 )
10 
11 particleFlowClusterECAL = cms.EDProducer(
12  "CorrectedECALPFClusterProducer",
13  inputECAL = cms.InputTag("particleFlowClusterECALUncorrected"),
14  inputPS = cms.InputTag("particleFlowClusterPS"),
15  minimumPSEnergy = cms.double(0.0),
16  energyCorrector = _emEnergyCorrector
17  )
18