Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-09-24 22:51:01

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def NanoAODDQM(*args, **kwargs):
0004   mod = cms.EDProducer('NanoAODDQM',
0005     vplots = cms.PSet(
0006       allowAnyLabel_ = cms.required.PSetTemplate(
0007         sels = cms.PSet(
0008           allowAnyLabel_ = cms.required.string
0009         ),
0010         plots = cms.required.VPSet
0011       )
0012     ),
0013     mightGet = cms.optional.untracked.vstring
0014   )
0015   for a in args:
0016     mod.update_(a)
0017   mod.update_(kwargs)
0018   return mod