CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_10/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                                           # max phi angle of reconstructed segments 
00023                                           phiSegmCut = cms.untracked.double(30.),
00024                                           # min # hits of segment used to validate a segment in WB+-2/SecX/MB1 
00025                                           nhitsCut = cms.untracked.int32(11)
00026                                           )
00027 
00028