Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-11-23 03:28:05

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def HGCalCellOffsetTester(*args, **kwargs):
0004   mod = cms.EDAnalyzer('HGCalCellOffsetTester',
0005     waferSize = cms.double(167.4408),
0006     waferType = cms.int32(0),
0007     cellPlacementIndex = cms.int32(11),
0008     cellType = cms.int32(0),
0009     mouseBiteCut = cms.double(5),
0010     guardRingOffset = cms.double(0.9),
0011     sizeOffset = cms.double(0.435),
0012     mightGet = cms.optional.untracked.vstring
0013   )
0014   for a in args:
0015     mod.update_(a)
0016   mod.update_(kwargs)
0017   return mod