CMS 3D CMS Logo

dtSegmentTask_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 dtSegmentAnalysisMonitor = DQMEDAnalyzer('DTSegmentAnalysisTask',
5  # switch for verbosity
6  debug = cms.untracked.bool(False),
7  # label of 4D segments
8  recHits4DLabel = cms.untracked.string('dt4DSegments'),
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  # top folder for the histograms in DQMStore
14  topHistoFolder = cms.untracked.string('DT/02-Segments'),
15  # hlt DQM mode
16  hltDQMMode = cms.untracked.bool(False),
17  # max phi angle of reconstructed segments
18  phiSegmCut = cms.untracked.double(30.),
19  # min # hits of segment used to validate a segment in WB+-2/SecX/MB1
20  nhitsCut = cms.untracked.int32(11)
21  )
22 
23