Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:00:43

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def TfGraphDefProducer(**kwargs):
0004   mod = cms.ESProducer('TfGraphDefProducer',
0005     ComponentName = cms.string('tfGraphDef'),
0006     FileName = cms.FileInPath(''),
0007     appendToDataLabel = cms.string('')
0008   )
0009   for k,v in kwargs.items():
0010     setattr(mod, k, v)
0011   return mod