File indexing completed on 2024-04-06 12:24:55
0001 import FWCore.ParameterSet.Config as cms
0002
0003 electronEcalRecHitIsolationLcone = cms.EDProducer("EgammaEcalRecHitIsolationProducer",
0004
0005 ecalBarrelRecHitCollection = cms.InputTag("ecalRecHit", "EcalRecHitsEB"),
0006 ecalEndcapRecHitCollection = cms.InputTag("ecalRecHit", "EcalRecHitsEE"),
0007
0008
0009
0010
0011
0012 useNumCrystals = cms.bool(True),
0013 intRadiusBarrel = cms.double(3.0),
0014 intRadiusEndcap = cms.double(3.0),
0015 jurassicWidth = cms.double(1.5),
0016 extRadius = cms.double(0.4),
0017 etMinBarrel = cms.double(0.0),
0018 eMinBarrel = cms.double(0.095),
0019 etMinEndcap = cms.double(0.110),
0020 eMinEndcap = cms.double(0.0),
0021
0022 useIsolEt = cms.bool(True),
0023 tryBoth = cms.bool(True),
0024 subtract = cms.bool(False),
0025 vetoClustered = cms.bool(False),
0026
0027 emObjectProducer = cms.InputTag("gedGsfElectrons")
0028 )
0029
0030