File indexing completed on 2025-02-07 14:23:33
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def AlCaHBHEMuonProducer(*args, **kwargs):
0004 mod = cms.EDProducer('AlCaHBHEMuonProducer',
0005 BeamSpotLabel = cms.InputTag('offlineBeamSpot'),
0006 VertexLabel = cms.InputTag('offlinePrimaryVertices'),
0007 EBRecHitLabel = cms.InputTag('ecalRecHit', 'EcalRecHitsEB'),
0008 EERecHitLabel = cms.InputTag('ecalRecHit', 'EcalRecHitsEE'),
0009 HBHERecHitLabel = cms.InputTag('hbhereco'),
0010 MuonLabel = cms.InputTag('muons'),
0011 MinimumMuonP = cms.double(5),
0012 mightGet = cms.optional.untracked.vstring
0013 )
0014 for a in args:
0015 mod.update_(a)
0016 mod.update_(kwargs)
0017 return mod