CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/RecoEgamma/EgammaIsolationAlgos/python/electronEcalRecHitIsolationScone_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 electronEcalRecHitIsolationScone = cms.EDProducer("EgammaEcalRecHitIsolationProducer",
00004 
00005     ecalBarrelRecHitProducer = cms.InputTag("ecalRecHit"),
00006     ecalBarrelRecHitCollection = cms.InputTag("EcalRecHitsEB"),
00007     ecalEndcapRecHitProducer = cms.InputTag("ecalRecHit"),
00008     ecalEndcapRecHitCollection = cms.InputTag("EcalRecHitsEE"),
00009 
00010     #useNumCrystals = cms.bool(False),
00011     #intRadiusBarrel = cms.double(0.045),
00012     #intRadiusEndcap = cms.double(0.070),
00013     #jurassicWidth = cms.double(0.02),    #dEta strip width
00014     useNumCrystals = cms.bool(True),
00015     intRadiusBarrel = cms.double(3.0),
00016     intRadiusEndcap = cms.double(3.0),
00017     jurassicWidth = cms.double(1.5),    #dEta strip width
00018     extRadius = cms.double(0.3),
00019     etMinBarrel = cms.double(0.0),
00020     eMinBarrel = cms.double(0.095),
00021     etMinEndcap = cms.double(0.110),
00022     eMinEndcap = cms.double(0.0),
00023 
00024     useIsolEt = cms.bool(True),
00025     tryBoth   = cms.bool(True),
00026     subtract  = cms.bool(False),
00027     vetoClustered  = cms.bool(False),
00028 
00029     emObjectProducer = cms.InputTag("gsfElectrons")
00030 )
00031 
00032