Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def HGCalConfigurationESProducer(*args, **kwargs):
0004   mod = cms.ESSource('HGCalConfigurationESProducer',
0005     indexSource = cms.ESInputTag('', ''),
0006     fedjson = cms.string(''),
0007     modjson = cms.string(''),
0008     bePassthroughMode = cms.int32(-1),
0009     econPassthroughMode = cms.int32(-1),
0010     cbHeaderMarker = cms.int32(-1),
0011     slinkHeaderMarker = cms.int32(-1),
0012     econdHeaderMarker = cms.int32(-1),
0013     charMode = cms.int32(-1),
0014     gain = cms.int32(-1),
0015     appendToDataLabel = cms.string('')
0016   )
0017   for a in args:
0018     mod.update_(a)
0019   mod.update_(kwargs)
0020   return mod