Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def PATElectronUserDataEmbedder(*args, **kwargs):
0004   mod = cms.EDProducer('PATElectronUserDataEmbedder',
0005     src = cms.required.InputTag,
0006     parentSrcs = cms.VInputTag(),
0007     userFloats = cms.PSet(
0008       allowAnyLabel_ = cms.optional.InputTag
0009     ),
0010     userInts = cms.PSet(
0011       allowAnyLabel_ = cms.optional.InputTag
0012     ),
0013     userIntFromBools = cms.PSet(
0014       allowAnyLabel_ = cms.optional.InputTag
0015     ),
0016     userCands = cms.PSet(
0017       allowAnyLabel_ = cms.optional.InputTag
0018     ),
0019     mightGet = cms.optional.untracked.vstring
0020   )
0021   for a in args:
0022     mod.update_(a)
0023   mod.update_(kwargs)
0024   return mod