test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
dtNoiseTask_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 
4 dtNoiseMonitor = cms.EDAnalyzer("DTNoiseTask",
5  # the label to retrieve the DT digis
6  dtDigiLabel = cms.InputTag("dtunpacker"),
7  # switch for time box booking
8  doTbHistos = cms.untracked.bool(False),
9  # the name of the 4D rec hits collection
10  recHits4DLabel = cms.string("dt4DSegments"),
11  # switch for segment veto
12  doSegmentVeto = cms.untracked.bool(False),
13  # safe margin (ns) between ttrig and beginning of counting area
14  safeMargin = cms.untracked.double(100.)
15  )