CMS 3D CMS Logo

dtTriggerSynchTask_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 dtTriggerSynchMonitor = cms.EDAnalyzer("DTLocalTriggerSynchTask",
4  staticBooking = cms.untracked.bool(True),
5  # labels of DDU/TM data and 4D segments
6  TMInputTag = cms.InputTag('dttfDigis'),
7  DDUInputTag = cms.InputTag('muonDTDigis'),
8  SEGInputTag = cms.InputTag('dt4DSegments'),
9  bxTimeInterval = cms.double(25),
10  rangeWithinBX = cms.bool(True),
11  nBXHigh = cms.int32(0),
12  nBXLow = cms.int32(1),
13  angleRange = cms.double(30.),
14  minHitsPhi = cms.int32(7),
15  baseDir = cms.string("DT/90-LocalTriggerSynch/"),
16  tTrigModeConfig = cms.PSet(
17  vPropWire = cms.double(24.4),
18  doTOFCorrection = cms.bool(False),
19  tofCorrType = cms.int32(0),
20  wirePropCorrType = cms.int32(0),
21  doWirePropCorrection = cms.bool(False),
22  doT0Correction = cms.bool(False),
23  debug = cms.untracked.bool(False),
24  tTrigLabel = cms.string('')
25  ),
26  tTrigMode = cms.string('DTTTrigSyncFromDB')
27 )
28 
29