CMS 3D CMS Logo

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

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 #For curious user only
00004 #EGamma POG is recommending use of Towers for HCAL Iso
00005 EleIsoHcalFromHitsExtractorBlock = cms.PSet(
00006     ComponentName = cms.string('EgammaHcalExtractor'),
00007     DepositLabel = cms.untracked.string(''),
00008     hcalRecHits = cms.InputTag("hbhereco"),
00009     extRadius = cms.double(0.6),
00010     intRadius = cms.double(0.0),
00011     etMin = cms.double(-999.0)
00012 )
00013 
00014 EleIsoHcalFromTowersExtractorBlock = cms.PSet(
00015     caloTowers = cms.InputTag('towerMaker'),
00016     ComponentName = cms.string('EgammaTowerExtractor'),
00017     intRadius = cms.double(0.0),
00018     extRadius = cms.double(0.6),
00019     DepositLabel = cms.untracked.string(''),
00020     etMin = cms.double(-999.0),
00021     hcalDepth = cms.int32(-1)
00022 )
00023