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.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  # # of bins in the time histos
14  nTimeBins = cms.untracked.int32(100),
15  # # of LS per bin in the time histos
16  nLSTimeBin = cms.untracked.int32(15),
17  # switch on/off sliding bins in time histos
18  slideTimeBins = cms.untracked.bool(True),
19  # top folder for the histograms in DQMStore
20  topHistoFolder = cms.untracked.string("DT/02-Segments"),
21  # hlt DQM mode
22  hltDQMMode = cms.untracked.bool(False),
23  # max phi angle of reconstructed segments
24  phiSegmCut = cms.untracked.double(30.),
25  # min # hits of segment used to validate a segment in WB+-2/SecX/MB1
26  nhitsCut = cms.untracked.int32(11)
27  )
28 
29