Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-09-26 05:06:26

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def HGCalSimHitValidation(*args, **kwargs):
0004   mod = cms.EDProducer('HGCalSimHitValidation',
0005     DetectorName = cms.string('HGCalEESensitive'),
0006     CaloHitSource = cms.string('HGCHitsEE'),
0007     TimeSlices = cms.vdouble(
0008       25,
0009       1000
0010     ),
0011     Verbosity = cms.untracked.int32(0),
0012     TestNumber = cms.untracked.bool(True),
0013     mightGet = cms.optional.untracked.vstring
0014   )
0015   for a in args:
0016     mod.update_(a)
0017   mod.update_(kwargs)
0018   return mod