CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_9_patch3/src/DQM/DTMonitorModule/python/dtTriggerSynchTask_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 dtTriggerSynchMonitor = cms.EDAnalyzer("DTLocalTriggerSynchTask",
00004     staticBooking = cms.untracked.bool(True),
00005     # labels of DDU/DCC data and 4D segments
00006     DCCInputTag    = cms.InputTag('dttfDigis'),
00007     DDUInputTag    = cms.InputTag('muonDTDigis'),
00008     SEGInputTag    = cms.InputTag('dt4DSegments'),
00009     bxTimeInterval = cms.double(25),
00010     rangeWithinBX  = cms.bool(True),
00011     nBXHigh        = cms.int32(0),
00012     nBXLow         = cms.int32(1),
00013     angleRange     = cms.double(30.),
00014     minHitsPhi     = cms.int32(7),
00015     baseDir        = cms.string("DT/90-LocalTriggerSynch/"),
00016     tTrigModeConfig = cms.PSet(
00017             vPropWire = cms.double(24.4),
00018             doTOFCorrection = cms.bool(False),
00019             tofCorrType = cms.int32(0),
00020             wirePropCorrType = cms.int32(0),
00021             doWirePropCorrection = cms.bool(False),
00022             doT0Correction = cms.bool(False),
00023             debug = cms.untracked.bool(False),
00024             tTrigLabel = cms.string('')
00025     ),
00026     tTrigMode = cms.string('DTTTrigSyncFromDB')
00027 )
00028 
00029