CMS 3D CMS Logo

electronEcalRecHitIsolationLcone_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 electronEcalRecHitIsolationLcone = cms.EDProducer("EgammaEcalRecHitIsolationProducer",
4 
5  ecalBarrelRecHitCollection = cms.InputTag("ecalRecHit", "EcalRecHitsEB"),
6  ecalEndcapRecHitCollection = cms.InputTag("ecalRecHit", "EcalRecHitsEE"),
7 
8  #useNumCrystals = cms.bool(False),
9  #intRadiusBarrel = cms.double(0.045),
10  #intRadiusEndcap = cms.double(0.070),
11  #jurassicWidth = cms.double(0.02), #dEta strip width
12  useNumCrystals = cms.bool(True),
13  intRadiusBarrel = cms.double(3.0),
14  intRadiusEndcap = cms.double(3.0),
15  jurassicWidth = cms.double(1.5), #dEta strip width
16  extRadius = cms.double(0.4),
17  etMinBarrel = cms.double(0.0),
18  eMinBarrel = cms.double(0.095),
19  etMinEndcap = cms.double(0.110),
20  eMinEndcap = cms.double(0.0),
21 
22  useIsolEt = cms.bool(True),
23  tryBoth = cms.bool(True),
24  subtract = cms.bool(False),
25  vetoClustered = cms.bool(False),
26 
27  emObjectProducer = cms.InputTag("gedGsfElectrons")
28 )
29 
30