Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003
00004
00005
00006
00007 EcalHaloData= cms.EDProducer("EcalHaloDataProducer",
00008
00009 EBRecHitLabel = cms.InputTag("ecalRecHit","EcalRecHitsEB"),
00010 EERecHitLabel = cms.InputTag("ecalRecHit", "EcalRecHitsEE"),
00011 ESRecHitLabel = cms.InputTag("ecalPreshowerRecHit","EcalRecHitsES"),
00012
00013
00014 SuperClusterLabel = cms.InputTag("correctedHybridSuperClusters"),
00015
00016 PhotonLabel = cms.InputTag("photons"),
00017
00018 EBRecHitEnergyThresholdParam = cms.double(0.3),
00019 EERecHitEnergyThresholdParam = cms.double(0.3),
00020 ESRecHitEnergyThresholdParam = cms.double(0.3),
00021 SumEcalEnergyThresholdParam = cms.double(10.),
00022 NHitsEcalThresholdParam = cms.int32(4),
00023
00024
00025 RoundnessCutParam = cms.double(0.41),
00026 AngleCutParam = cms.double(0.51),
00027
00028 )
00029
00030