Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-02-07 14:24:06

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def ECFAdder(*args, **kwargs):
0004   mod = cms.EDProducer('ECFAdder',
0005     src = cms.InputTag('no default'),
0006     Njets = cms.vuint32(
0007       1,
0008       2,
0009       3
0010     ),
0011     cuts = cms.vstring(
0012       '',
0013       '',
0014       ''
0015     ),
0016     alpha = cms.double(1),
0017     beta = cms.double(1),
0018     ecftype = cms.string(''),
0019     srcWeights = cms.InputTag('puppi'),
0020     mightGet = cms.optional.untracked.vstring
0021   )
0022   for a in args:
0023     mod.update_(a)
0024   mod.update_(kwargs)
0025   return mod