Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003
00004 EleIsoEcalFromHitsExtractorBlock = cms.PSet(
00005 ComponentName = cms.string('EgammaRecHitExtractor'),
00006 DepositLabel = cms.untracked.string(''),
00007 isolationVariable = cms.string('et'),
00008 extRadius = cms.double(0.6),
00009 intRadius = cms.double(0.0),
00010 intStrip = cms.double(0.0),
00011 etMin = cms.double(0.0),
00012 energyMin = cms.double(0.095),
00013 subtractSuperClusterEnergy = cms.bool(False),
00014 tryBoth = cms.bool(True),
00015 vetoClustered = cms.bool(False),
00016
00017 barrelEcalHits = cms.InputTag("ecalRecHit","EcalRecHitsEB"),
00018 endcapEcalHits = cms.InputTag("ecalRecHit","EcalRecHitsEE"),
00019
00020 severityLevelCut = cms.int32(4),
00021
00022
00023
00024
00025 recHitFlagsToBeExcluded = cms.vstring(
00026 'kFaultyHardware',
00027 'kPoorCalib',
00028
00029
00030
00031 'kTowerRecovered',
00032 'kDead'
00033 ),
00034
00035 )
00036