File indexing completed on 2024-04-06 12:24:55
0001 import FWCore.ParameterSet.Config as cms
0002
0003
0004 GamIsoHcalFromHitsExtractorBlock = cms.PSet(
0005 ComponentName = cms.string('EgammaHcalExtractor'),
0006 DepositLabel = cms.untracked.string(''),
0007 hcalRecHits = cms.InputTag("hbhereco"),
0008 extRadius = cms.double(0.6),
0009 intRadius = cms.double(0.0),
0010 etMin = cms.double(-999.0)
0011 )
0012
0013 GamIsoHcalFromTowersExtractorBlock = cms.PSet(
0014 caloTowers = cms.InputTag("towerMaker"),
0015 ComponentName = cms.string('EgammaTowerExtractor'),
0016 intRadius = cms.double(0.0),
0017 extRadius = cms.double(0.6),
0018 DepositLabel = cms.untracked.string(''),
0019 etMin = cms.double(-999.0),
0020 hcalDepth = cms.int32(-1)
0021 )
0022