File indexing completed on 2025-02-07 14:24:18
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def HcalSimHitCheck(*args, **kwargs):
0004 mod = cms.EDAnalyzer('HcalSimHitCheck',
0005 moduleLabel = cms.string('g4SimHits'),
0006 HitCollection = cms.string('HcalHits'),
0007 outputFile = cms.string('hcHit.root'),
0008 Verbose = cms.int32(0),
0009 TestNumber = cms.bool(True),
0010 hep17 = cms.bool(False),
0011 mightGet = cms.optional.untracked.vstring
0012 )
0013 for a in args:
0014 mod.update_(a)
0015 mod.update_(kwargs)
0016 return mod