Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:00:10

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def AlCaHBHEMuonProducer(**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 k,v in kwargs.items():
0015     setattr(mod, k, v)
0016   return mod