Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def DetSetVectorThingProducer(**kwargs):
0004   mod = cms.EDProducer('DetSetVectorThingProducer',
0005     offsetDelta = cms.int32(0),
0006     detSets = cms.vint32(
0007       1,
0008       2,
0009       3
0010     ),
0011     nThings = cms.int32(20),
0012     grow = cms.bool(False),
0013     mightGet = cms.optional.untracked.vstring
0014   )
0015   for k,v in kwargs.items():
0016     setattr(mod, k, v)
0017   return mod