Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-05-15 02:27:38

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def SiPixelDigiMorphing(*args, **kwargs):
0004   mod = cms.EDProducer('SiPixelDigiMorphing',
0005     src = cms.InputTag('siPixelDigis'),
0006     barrelRegions = cms.vstring(
0007       '1,1-12,1-2',
0008       '1,1-12,7-8',
0009       '2,1-28,1',
0010       '1,1-28,8'
0011     ),
0012     endcapRegions = cms.vstring(),
0013     nrows = cms.int32(160),
0014     ncols = cms.int32(416),
0015     nrocs = cms.int32(8),
0016     iters = cms.int32(1),
0017     kernel1 = cms.vint32(
0018       7,
0019       7,
0020       7
0021     ),
0022     kernel2 = cms.vint32(
0023       2,
0024       7,
0025       2
0026     ),
0027     fakeAdc = cms.uint32(100),
0028     mightGet = cms.optional.untracked.vstring
0029   )
0030   for a in args:
0031     mod.update_(a)
0032   mod.update_(kwargs)
0033   return mod