File indexing completed on 2024-11-23 03:28:26
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def PFRecHitProducer(*args, **kwargs):
0004 mod = cms.EDProducer('PFRecHitProducer',
0005 navigator = cms.PSet(
0006 name = cms.string(''),
0007 hcalEnums = cms.vint32(),
0008 barrel = cms.PSet(),
0009 endcap = cms.PSet(),
0010 hgcee = cms.PSet(
0011 name = cms.string(''),
0012 topologySource = cms.string('')
0013 ),
0014 hgcheb = cms.PSet(
0015 name = cms.string(''),
0016 topologySource = cms.string('')
0017 ),
0018 hgchef = cms.PSet(
0019 name = cms.string(''),
0020 topologySource = cms.string('')
0021 )
0022 ),
0023 producers = cms.VPSet(
0024 ),
0025 mightGet = cms.optional.untracked.vstring
0026 )
0027 for a in args:
0028 mod.update_(a)
0029 mod.update_(kwargs)
0030 return mod