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  ecalBarrelRecHitProducer = cms.InputTag("ecalRecHit"),
6  ecalBarrelRecHitCollection = cms.InputTag("EcalRecHitsEB"),
7  ecalEndcapRecHitProducer = cms.InputTag("ecalRecHit"),
8  ecalEndcapRecHitCollection = cms.InputTag("EcalRecHitsEE"),
9 
10  #useNumCrystals = cms.bool(False),
11  #intRadiusBarrel = cms.double(0.045),
12  #intRadiusEndcap = cms.double(0.070),
13  #jurassicWidth = cms.double(0.02), #dEta strip width
14  useNumCrystals = cms.bool(True),
15  intRadiusBarrel = cms.double(3.0),
16  intRadiusEndcap = cms.double(3.0),
17  jurassicWidth = cms.double(1.5), #dEta strip width
18  extRadius = cms.double(0.4),
19  etMinBarrel = cms.double(0.0),
20  eMinBarrel = cms.double(0.095),
21  etMinEndcap = cms.double(0.110),
22  eMinEndcap = cms.double(0.0),
23 
24  useIsolEt = cms.bool(True),
25  tryBoth = cms.bool(True),
26  subtract = cms.bool(False),
27  vetoClustered = cms.bool(False),
28 
29  emObjectProducer = cms.InputTag("gedGsfElectrons")
30 )
31 
32