File indexing completed on 2025-02-07 14:24:16
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def HitParentTest(*args, **kwargs):
0004 mod = cms.EDAnalyzer('HitParentTest',
0005 SourceLabel = cms.untracked.string('generatorSmeared'),
0006 ModuleLabel = cms.untracked.string('g4SimHits'),
0007 EBCollection = cms.untracked.string('EcalHitsEB'),
0008 EECollection = cms.untracked.string('EcalHitsEE'),
0009 ESCollection = cms.untracked.string('EcalHitsES'),
0010 HCCollection = cms.untracked.string('HcalHits'),
0011 mightGet = cms.optional.untracked.vstring
0012 )
0013 for a in args:
0014 mod.update_(a)
0015 mod.update_(kwargs)
0016 return mod