Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-02-07 14:23:39

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def MuDTSegmentExtTableProducer(*args, **kwargs):
0004   mod = cms.EDProducer('MuDTSegmentExtTableProducer',
0005     name = cms.string('dtSegment'),
0006     src = cms.InputTag('dt4DSegments'),
0007     fillExtrapolation = cms.bool(True),
0008     fillHits = cms.bool(True),
0009     tTrigMode = cms.string('DTTTrigSyncFromDB'),
0010     tTrigModeConfig = cms.PSet(
0011       doTOFCorrection = cms.bool(True),
0012       tofCorrType = cms.int32(2),
0013       vPropWire = cms.double(24.4),
0014       doWirePropCorrection = cms.bool(True),
0015       wirePropCorrType = cms.int32(0),
0016       tTrigLabel = cms.string(''),
0017       doT0Correction = cms.bool(True),
0018       t0Label = cms.string(''),
0019       debug = cms.untracked.bool(False)
0020     ),
0021     mightGet = cms.optional.untracked.vstring
0022   )
0023   for a in args:
0024     mod.update_(a)
0025   mod.update_(kwargs)
0026   return mod