Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-01-08 03:35:54

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def EcalHaloDataProducer(*args, **kwargs):
0004   mod = cms.EDProducer('EcalHaloDataProducer',
0005     EBRecHitLabel = cms.InputTag('ecalRecHit', 'EcalRecHitsEB'),
0006     EERecHitLabel = cms.InputTag('ecalRecHit', 'EcalRecHitsEE'),
0007     ESRecHitLabel = cms.InputTag('ecalPreshowerRecHit', 'EcalRecHitsES'),
0008     HBHERecHitLabel = cms.InputTag('hbhereco'),
0009     SuperClusterLabel = cms.InputTag('correctedHybridSuperClusters'),
0010     PhotonLabel = cms.InputTag(''),
0011     EBRecHitEnergyThresholdParam = cms.double(0.3),
0012     EERecHitEnergyThresholdParam = cms.double(0.3),
0013     ESRecHitEnergyThresholdParam = cms.double(0.3),
0014     SumEcalEnergyThresholdParam = cms.double(10),
0015     NHitsEcalThresholdParam = cms.int32(4),
0016     RoundnessCutParam = cms.double(0.41),
0017     AngleCutParam = cms.double(0.51),
0018     mightGet = cms.optional.untracked.vstring
0019   )
0020   for a in args:
0021     mod.update_(a)
0022   mod.update_(kwargs)
0023   return mod