CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/RecoEgamma/EgammaIsolationAlgos/python/gamHcalExtractorBlocks_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 #Egamma POG currently recommends using Towers
00004 GamIsoHcalFromHitsExtractorBlock = cms.PSet(
00005     ComponentName = cms.string('EgammaHcalExtractor'),
00006     DepositLabel = cms.untracked.string(''),
00007     hcalRecHits = cms.InputTag("hbhereco"),
00008     extRadius = cms.double(0.6),
00009     intRadius = cms.double(0.0),
00010     etMin = cms.double(-999.0)
00011 )
00012 
00013 GamIsoHcalFromTowersExtractorBlock = cms.PSet(
00014     caloTowers = cms.InputTag("towerMaker"),
00015     ComponentName = cms.string('EgammaTowerExtractor'),
00016     intRadius = cms.double(0.0),
00017     extRadius = cms.double(0.6),
00018     DepositLabel = cms.untracked.string(''),
00019     etMin = cms.double(-999.0),
00020     hcalDepth = cms.int32(-1)
00021 )
00022