Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-08-27 22:59:09

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def PathsAndConsumesOfModulesTestService(**kwargs):
0004   mod = cms.Service('PathsAndConsumesOfModulesTestService',
0005     modulesAndConsumes = cms.VPSet(
0006     )
0007   )
0008   for k,v in kwargs.items():
0009     setattr(mod, k, v)
0010   return mod