Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-02-07 14:24:08

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def GEMRecHitProducer(*args, **kwargs):
0004   mod = cms.EDProducer('GEMRecHitProducer',
0005     recAlgoConfig = cms.PSet(),
0006     recAlgo = cms.string('GEMRecHitStandardAlgo'),
0007     gemDigiLabel = cms.InputTag('muonGEMDigis'),
0008     applyMasking = cms.bool(False),
0009     ge21Off = cms.bool(False),
0010     maskFile = cms.optional.FileInPath,
0011     deadFile = cms.optional.FileInPath,
0012     mightGet = cms.optional.untracked.vstring
0013   )
0014   for a in args:
0015     mod.update_(a)
0016   mod.update_(kwargs)
0017   return mod