Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:24:55

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 #For curious user only
0004 #EGamma POG is recommending use of Towers for HCAL Iso
0005 EleIsoHcalFromHitsExtractorBlock = cms.PSet(
0006     ComponentName = cms.string('EgammaHcalExtractor'),
0007     DepositLabel = cms.untracked.string(''),
0008     hcalRecHits = cms.InputTag("hbhereco"),
0009     extRadius = cms.double(0.6),
0010     intRadius = cms.double(0.0),
0011     etMin = cms.double(-999.0)
0012 )
0013 
0014 EleIsoHcalFromTowersExtractorBlock = cms.PSet(
0015     caloTowers = cms.InputTag('towerMaker'),
0016     ComponentName = cms.string('EgammaTowerExtractor'),
0017     intRadius = cms.double(0.0),
0018     extRadius = cms.double(0.6),
0019     DepositLabel = cms.untracked.string(''),
0020     etMin = cms.double(-999.0),
0021     hcalDepth = cms.int32(-1)
0022 )
0023