Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def DQMScaleToClient(*args, **kwargs):
0004   mod = cms.EDProducer('DQMScaleToClient',
0005     outputme = cms.PSet(
0006       folder = cms.string(''),
0007       name = cms.string(''),
0008       factor = cms.double(1)
0009     ),
0010     inputme = cms.PSet(
0011       folder = cms.string(''),
0012       name = cms.string('')
0013     ),
0014     mightGet = cms.optional.untracked.vstring
0015   )
0016   for a in args:
0017     mod.update_(a)
0018   mod.update_(kwargs)
0019   return mod