File indexing completed on 2024-04-06 12:26:07
0001 import FWCore.ParameterSet.Config as cms
0002
0003 DTSegAnalyzer = cms.EDAnalyzer("DTSegAnalyzer",
0004 doHits = cms.bool(True),
0005 tTrigMode = cms.untracked.string('DTTTrigSyncFromDB'),
0006 recHits2DLabel = cms.string('dt2DSegments'),
0007 doSegs = cms.bool(True),
0008 doSA = cms.bool(True),
0009 recHits4DLabel = cms.string('dt4DSegments'),
0010 rootFileName = cms.untracked.string('DTSegAnalyzer.root'),
0011 debug = cms.untracked.bool(False),
0012 tTrigModeConfig = cms.untracked.PSet(
0013 vPropWire = cms.double(24.4),
0014 doTOFCorrection = cms.bool(False),
0015 tofCorrType = cms.int32(2),
0016 kFactor = cms.double(-1.3),
0017 wirePropCorrType = cms.int32(0),
0018 doWirePropCorrection = cms.bool(False),
0019 doT0Correction = cms.bool(True),
0020 debug = cms.untracked.bool(False),
0021 tTrigLabel = cms.string(''),
0022 t0Label = cms.string('')
0023 ),
0024 recHits1DLabel = cms.string('dt1DRecHits')
0025 )
0026
0027
0028