CMS 3D CMS Logo

eleHcalExtractorBlocks_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #For curious user only
4 #EGamma POG is recommending use of Towers for HCAL Iso
5 EleIsoHcalFromHitsExtractorBlock = cms.PSet(
6  ComponentName = cms.string('EgammaHcalExtractor'),
7  DepositLabel = cms.untracked.string(''),
8  hcalRecHits = cms.InputTag("hbhereco"),
9  extRadius = cms.double(0.6),
10  intRadius = cms.double(0.0),
11  etMin = cms.double(-999.0)
12 )
13 
14 EleIsoHcalFromTowersExtractorBlock = cms.PSet(
15  caloTowers = cms.InputTag('towerMaker'),
16  ComponentName = cms.string('EgammaTowerExtractor'),
17  intRadius = cms.double(0.0),
18  extRadius = cms.double(0.6),
19  DepositLabel = cms.untracked.string(''),
20  etMin = cms.double(-999.0),
21  hcalDepth = cms.int32(-1)
22 )
23