Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-11-23 03:27:49

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def PPSPixelTopologyESSource(*args, **kwargs):
0004   mod = cms.ESSource('PPSPixelTopologyESSource',
0005     RunType = cms.string('Run3'),
0006     PitchSimY = cms.double(0.15),
0007     PitchSimX = cms.double(0.1),
0008     thickness = cms.double(0.23),
0009     noOfPixelSimX = cms.int32(160),
0010     noOfPixelSimY = cms.int32(104),
0011     noOfPixels = cms.int32(16640),
0012     simXWidth = cms.double(16.6),
0013     simYWidth = cms.double(16.2),
0014     deadEdgeWidth = cms.double(0.2),
0015     activeEdgeSigma = cms.double(0.02),
0016     physActiveEdgeDist = cms.double(0.15),
0017     appendToDataLabel = cms.string('')
0018   )
0019   for a in args:
0020     mod.update_(a)
0021   mod.update_(kwargs)
0022   return mod