CMS 3D CMS Logo

dtSegmentTask_hlt_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
4 dtSegmentTaskHLT = DQMEDAnalyzer('DTSegmentAnalysisTask',
5  # switch for verbosity
6  debug = cms.untracked.bool(False),
7  # label of 4D segments
8  recHits4DLabel = cms.untracked.string('hltDt4DSegments'),
9  # skip segments with noisy cells (reads from DB)
10  checkNoisyChannels = cms.untracked.bool(True),
11  # switch off uneeded histograms
12  detailedAnalysis = cms.untracked.bool(False),
13  # # of bins in the time histos
14  nTimeBins = cms.untracked.int32(100),
15  # # of LS per bin in the time histos
16  nLSTimeBin = cms.untracked.int32(15),
17  # switch on/off sliding bins in time histos
18  slideTimeBins = cms.untracked.bool(True),
19  # top folder for the histograms in DQMStore
20  topHistoFolder = cms.untracked.string('HLT/HLTMonMuon/DT-Segments'),
21  # hlt DQM mode
22  hltDQMMode = cms.untracked.bool(True)
23  )
24 
25