File indexing completed on 2025-02-07 14:24:18
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def HGCalShowerSeparation(*args, **kwargs):
0004 mod = cms.EDProducer('HGCalShowerSeparation',
0005 debug = cms.int32(1),
0006 filterOnEnergyAndCaloP = cms.bool(False),
0007 caloParticles = cms.InputTag('mix', 'MergedCaloTruth'),
0008 hitMapTag = cms.InputTag('recHitMapProducer', 'hgcalRecHitMap'),
0009 hits = cms.VInputTag(
0010 'HGCalRecHit:HGCEERecHits',
0011 'HGCalRecHit:HGCHEFRecHits',
0012 'HGCalRecHit:HGCHEBRecHits'
0013 ),
0014 mightGet = cms.optional.untracked.vstring
0015 )
0016 for a in args:
0017 mod.update_(a)
0018 mod.update_(kwargs)
0019 return mod