CMS 3D CMS Logo

dtSegmentTask_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 dtSegmentAnalysisMonitor = cms.EDAnalyzer("DTSegmentAnalysisTask",
4  # switch for verbosity
5  debug = cms.untracked.bool(False),
6  # label of 4D segments
7  recHits4DLabel = cms.string('dt4DSegments'),
8  # skip segments with noisy cells (reads from DB)
9  checkNoisyChannels = cms.untracked.bool(True),
10  # switch off uneeded histograms
11  detailedAnalysis = cms.untracked.bool(False),
12  # # of bins in the time histos
13  nTimeBins = cms.untracked.int32(100),
14  # # of LS per bin in the time histos
15  nLSTimeBin = cms.untracked.int32(15),
16  # switch on/off sliding bins in time histos
17  slideTimeBins = cms.untracked.bool(True),
18  # top folder for the histograms in DQMStore
19  topHistoFolder = cms.untracked.string("DT/02-Segments"),
20  # hlt DQM mode
21  hltDQMMode = cms.untracked.bool(False),
22  # max phi angle of reconstructed segments
23  phiSegmCut = cms.untracked.double(30.),
24  # min # hits of segment used to validate a segment in WB+-2/SecX/MB1
25  nhitsCut = cms.untracked.int32(11)
26  )
27 
28