CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/DQM/DTMonitorModule/python/dtSegmentTask_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 dtSegmentAnalysisMonitor = cms.EDAnalyzer("DTSegmentAnalysisTask",
00004                                           # switch for verbosity
00005                                           debug = cms.untracked.bool(False),
00006                                           # label of 4D segments
00007                                           recHits4DLabel = cms.string('dt4DSegments'),
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("DT/02-Segments"),
00020                                           # hlt DQM mode
00021                                           hltDQMMode = cms.untracked.bool(False)
00022                                           )
00023 
00024