File indexing completed on 2025-01-08 03:35:54
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def HcalHaloDataProducer(*args, **kwargs):
0004 mod = cms.EDProducer('HcalHaloDataProducer',
0005 EBRecHitLabel = cms.InputTag('ecalRecHit', 'EcalRecHitsEB'),
0006 EERecHitLabel = cms.InputTag('ecalRecHit', 'EcalRecHitsEE'),
0007 HBHERecHitLabel = cms.InputTag('hbhereco'),
0008 HFRecHitLabel = cms.InputTag('horeco'),
0009 HORecHitLabel = cms.InputTag('hfreco'),
0010 caloTowerCollName = cms.InputTag('towerMaker'),
0011 HBRecHitEnergyThresholdParam = cms.double(0.5),
0012 HERecHitEnergyThresholdParam = cms.double(0.5),
0013 SumHcalEnergyThresholdParam = cms.double(18),
0014 NHitsHcalThresholdParam = cms.int32(4),
0015 mightGet = cms.optional.untracked.vstring
0016 )
0017 for a in args:
0018 mod.update_(a)
0019 mod.update_(kwargs)
0020 return mod