Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003
00004 GamIsoEcalFromHitsExtractorBlock = cms.PSet(
00005 ComponentName = cms.string('EgammaRecHitExtractor'),
00006 DepositLabel = cms.untracked.string(''),
00007 barrelEcalHits = cms.InputTag("ecalRecHit","EcalRecHitsEB"),
00008 endcapEcalHits = cms.InputTag("ecalRecHit","EcalRecHitsEE"),
00009 isolationVariable = cms.string('et'),
00010 detector = cms.string('Ecal'),
00011 extRadius = cms.double(0.6),
00012 intRadius = cms.double(0.0),
00013 intStrip = cms.double(0.0),
00014 etMin = cms.double(0.0),
00015 energyMin = cms.double(0.095),
00016 subtractSuperClusterEnergy = cms.bool(False),
00017 tryBoth = cms.bool(True),
00018 vetoClustered = cms.bool(False),
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