Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def HGCalPartialCellTester(*args, **kwargs):
0004   mod = cms.EDAnalyzer('HGCalPartialCellTester',
0005     waferSize = cms.double(166.4408),
0006     waferType = cms.int32(0),
0007     cellPlacementIndex = cms.int32(3),
0008     partialType = cms.int32(25),
0009     numbberOfTrials = cms.int32(1000),
0010     v17OrLess = cms.bool(False),
0011     modeUV = cms.int32(0),
0012     mightGet = cms.optional.untracked.vstring
0013   )
0014   for a in args:
0015     mod.update_(a)
0016   mod.update_(kwargs)
0017   return mod