File indexing completed on 2022-11-25 00:27:11
0001 import FWCore.ParameterSet.Config as cms
0002
0003 hltEcalPFClusterIsolationProducerRecoRecoEcalCandidate = cms.EDProducer('EgammaHLTEcalPFClusterIsolationProducer',
0004 recoEcalCandidateProducer = cms.InputTag('hltL1SeededRecoEcalCandidatePF'),
0005 pfClusterProducer = cms.InputTag('hltParticleFlowClusterECAL'),
0006 rhoProducer = cms.InputTag('fixedGridRhoFastjetAllCalo'),
0007 doRhoCorrection = cms.bool(False),
0008 rhoMax = cms.double(99999999),
0009 rhoScale = cms.double(1),
0010 drMax = cms.double(0.3),
0011 drVetoBarrel = cms.double(0),
0012 drVetoEndcap = cms.double(0),
0013 etaStripBarrel = cms.double(0),
0014 etaStripEndcap = cms.double(0),
0015 energyBarrel = cms.double(0),
0016 energyEndcap = cms.double(0),
0017 effectiveAreas = cms.vdouble(
0018 0.29,
0019 0.21
0020 ),
0021 absEtaLowEdges = cms.vdouble(
0022 0,
0023 1.479
0024 ),
0025 mightGet = cms.optional.untracked.vstring
0026 )