CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_1/src/DQM/DTMonitorModule/python/dtSegmentTask_hlt_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 dtSegmentTaskHLT = cms.EDAnalyzer("DTSegmentAnalysisTask",
00004                                   # switch for verbosity
00005                                   debug = cms.untracked.bool(False),
00006                                   # label of 4D segments
00007                                   recHits4DLabel = cms.string('hltDt4DSegments'),
00008                                   # skip segments with noisy cells (reads from DB)
00009                                   checkNoisyChannels = cms.untracked.bool(True),
00010                                   # switch off uneeded histograms
00011                                   detailedAnalysis = cms.untracked.bool(False),
00012                                   # # of bins in the time histos
00013                                   nTimeBins = cms.untracked.int32(100),
00014                                   # # of LS per bin in the time histos
00015                                   nLSTimeBin = cms.untracked.int32(15),
00016                                   # switch on/off sliding bins in time histos
00017                                   slideTimeBins = cms.untracked.bool(True),
00018                                   # top folder for the histograms in DQMStore
00019                                   topHistoFolder = cms.untracked.string("HLT/HLTMonMuon/DT-Segments"),
00020                                   # hlt DQM mode
00021                                   hltDQMMode = cms.untracked.bool(True)
00022                                   )
00023 
00024