File indexing completed on 2024-09-26 05:06:23
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def TSToSimTSHitLCAssociatorByEnergyScoreProducer(*args, **kwargs):
0004 mod = cms.EDProducer('TSToSimTSHitLCAssociatorByEnergyScoreProducer',
0005 hitMapTag = cms.InputTag('recHitMapProducer', 'hgcalRecHitMap'),
0006 hits = cms.VInputTag(
0007 'HGCalRecHit:HGCEERecHits',
0008 'HGCalRecHit:HGCHEFRecHits',
0009 'HGCalRecHit:HGCHEBRecHits'
0010 ),
0011 hardScatterOnly = cms.bool(True),
0012 mightGet = cms.optional.untracked.vstring
0013 )
0014 for a in args:
0015 mod.update_(a)
0016 mod.update_(kwargs)
0017 return mod