Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-03-05 03:13:38

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def ME0StubProducer(*args, **kwargs):
0004   mod = cms.EDProducer('ME0StubProducer',
0005     InputCollection = cms.InputTag('gemPadDigis'),
0006     skipCentroids = cms.bool(False),
0007     layerThresholdPatternId = cms.vint32(
0008       7,
0009       7,
0010       7,
0011       7,
0012       7,
0013       7,
0014       7,
0015       7,
0016       7,
0017       7,
0018       5,
0019       5,
0020       4,
0021       4,
0022       4,
0023       4,
0024       4
0025     ),
0026     layerThresholdEta = cms.vint32(
0027       4,
0028       5,
0029       4,
0030       5,
0031       4,
0032       5,
0033       4,
0034       5,
0035       4,
0036       5,
0037       4,
0038       5,
0039       4,
0040       5,
0041       4
0042     ),
0043     maxSpan = cms.int32(37),
0044     width = cms.int32(192),
0045     deghostPre = cms.bool(True),
0046     deghostPost = cms.bool(True),
0047     groupWidth = cms.int32(8),
0048     ghostWidth = cms.int32(1),
0049     xPartitionEnabled = cms.bool(True),
0050     enableNonPointing = cms.bool(False),
0051     crossPartitionSegmentWidth = cms.int32(4),
0052     numOutputs = cms.int32(4),
0053     checkIds = cms.bool(False),
0054     edgeDistance = cms.int32(2),
0055     numOr = cms.int32(2),
0056     mseThreshold = cms.double(0.75),
0057     mightGet = cms.optional.untracked.vstring
0058   )
0059   for a in args:
0060     mod.update_(a)
0061   mod.update_(kwargs)
0062   return mod