CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
dtSegmentTask_hlt_cfi.py
Go to the documentation of this file.
2 
3 dtSegmentTaskHLT = cms.EDAnalyzer("DTSegmentAnalysisTask",
4  # switch for verbosity
5  debug = cms.untracked.bool(False),
6  # label of 4D segments
7  recHits4DLabel = cms.string('hltDt4DSegments'),
8  # skip segments with noisy cells (reads from DB)
9  checkNoisyChannels = cms.untracked.bool(True),
10  # switch off uneeded histograms
11  detailedAnalysis = cms.untracked.bool(False),
12  # # of bins in the time histos
13  nTimeBins = cms.untracked.int32(100),
14  # # of LS per bin in the time histos
15  nLSTimeBin = cms.untracked.int32(15),
16  # switch on/off sliding bins in time histos
17  slideTimeBins = cms.untracked.bool(True),
18  # top folder for the histograms in DQMStore
19  topHistoFolder = cms.untracked.string("HLT/HLTMonMuon/DT-Segments"),
20  # hlt DQM mode
21  hltDQMMode = cms.untracked.bool(True)
22  )
23 
24