File indexing completed on 2025-02-07 14:24:14
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def SeedingLayersEDProducer(*args, **kwargs):
0004 mod = cms.EDProducer('SeedingLayersEDProducer',
0005 layerList = cms.vstring(),
0006 BPix = cms.PSet(),
0007 FPix = cms.PSet(),
0008 TIB = cms.PSet(),
0009 TID = cms.PSet(),
0010 TOB = cms.PSet(),
0011 TEC = cms.PSet(),
0012 MTIB = cms.PSet(),
0013 MTID = cms.PSet(),
0014 MTOB = cms.PSet(),
0015 MTEC = cms.PSet(),
0016 mightGet = cms.optional.untracked.vstring
0017 )
0018 for a in args:
0019 mod.update_(a)
0020 mod.update_(kwargs)
0021 return mod