Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-09-26 05:06:03

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def TestBPHRecoDecay(*args, **kwargs):
0004   mod = cms.EDAnalyzer('TestBPHRecoDecay',
0005     patMuonLabel = cms.string(''),
0006     ccCandsLabel = cms.string(''),
0007     pfCandsLabel = cms.string(''),
0008     pcCandsLabel = cms.string(''),
0009     gpCandsLabel = cms.string(''),
0010     outDump = cms.string('dump.txt'),
0011     outHist = cms.string('hist.root'),
0012     mightGet = cms.optional.untracked.vstring
0013   )
0014   for a in args:
0015     mod.update_(a)
0016   mod.update_(kwargs)
0017   return mod