Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 DTSegAnalyzer = cms.EDAnalyzer("DTSegAnalyzer",
00004 doHits = cms.bool(True),
00005 tTrigMode = cms.untracked.string('DTTTrigSyncFromDB'),
00006 recHits2DLabel = cms.string('dt2DSegments'),
00007 doSegs = cms.bool(True),
00008 doSA = cms.bool(True),
00009 recHits4DLabel = cms.string('dt4DSegments'),
00010 rootFileName = cms.untracked.string('DTSegAnalyzer.root'),
00011 debug = cms.untracked.bool(False),
00012 tTrigModeConfig = cms.untracked.PSet(
00013 vPropWire = cms.double(24.4),
00014 doTOFCorrection = cms.bool(False),
00015 tofCorrType = cms.int32(2),
00016 kFactor = cms.double(-1.3),
00017 wirePropCorrType = cms.int32(0),
00018 doWirePropCorrection = cms.bool(False),
00019 doT0Correction = cms.bool(True),
00020 debug = cms.untracked.bool(False)
00021 ),
00022 recHits1DLabel = cms.string('dt1DRecHits')
00023 )
00024
00025
00026