CMS 3D CMS Logo

dtLocalTriggerSynchTest_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 from DQMServices.Core.DQMEDHarvester import DQMEDHarvester
3 
4 triggerSynchTest = DQMEDHarvester("DTLocalTriggerSynchTest",
5  # prescale factor (in luminosity blocks) to perform client analysis
6  diagnosticPrescale = cms.untracked.int32(1),
7  # run in online environment
8  runOnline = cms.untracked.bool(True),
9  # kind of trigger data processed by DTLocalTriggerTask
10  hwSources = cms.untracked.vstring('TM'),
11  # false if DTLocalTriggerTask used LTC digis
12  localrun = cms.untracked.bool(True),
13  # root folder for booking of histograms
14  folderRoot = cms.untracked.string(''),
15  # correlated fraction test tresholds
16  bxTimeInterval = cms.double(25),
17  rangeWithinBX = cms.bool(True),
18  nBXHigh = cms.int32(0),
19  nBXLow = cms.int32(1),
20  minEntries = cms.int32(200),
21  writeDB = cms.bool(True),
22  dbFromTM = cms.bool(False),
23  fineParamDiff = cms.bool(False),
24  coarseParamDiff = cms.bool(False),
25  numHistoTag = cms.string('TrackCrossingTimeAllInBX'),
26  denHistoTag = cms.string('TrackCrossingTimeHHInBX'),
27  ratioHistoTag = cms.string('TrackCrossingTimeAllOverHHInBX')
28 )
29 
30