File indexing completed on 2025-02-07 14:24:15
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def EcalSimHitStudy(*args, **kwargs):
0004 mod = cms.EDAnalyzer('EcalSimHitStudy',
0005 ModuleLabel = cms.untracked.string('g4SimHits'),
0006 CaloCollection = cms.untracked.vstring(),
0007 SourceLabel = cms.untracked.string('VtxSmeared'),
0008 MaxEnergy = cms.untracked.double(200),
0009 TimeCut = cms.untracked.double(100),
0010 SelectX = cms.untracked.int32(-1),
0011 mightGet = cms.optional.untracked.vstring
0012 )
0013 for a in args:
0014 mod.update_(a)
0015 mod.update_(kwargs)
0016 return mod