Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-09-26 05:05:58

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def OmtfPacker(*args, **kwargs):
0004   mod = cms.EDProducer('OmtfPacker',
0005     rpcInputLabel = cms.InputTag(''),
0006     cscInputLabel = cms.InputTag(''),
0007     dtPhInputLabel = cms.InputTag(''),
0008     dtThInputLabel = cms.InputTag(''),
0009     skipRpc = cms.bool(False),
0010     skipCsc = cms.bool(False),
0011     skipDt = cms.bool(False),
0012     useRpcConnectionFile = cms.bool(False),
0013     rpcConnectionFile = cms.string(''),
0014     outputTag = cms.string(''),
0015     mightGet = cms.optional.untracked.vstring
0016   )
0017   for a in args:
0018     mod.update_(a)
0019   mod.update_(kwargs)
0020   return mod