Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:07:07

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 
0004 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
0005 dtNoiseMonitor = DQMEDAnalyzer('DTNoiseTask',
0006                                 # the label to retrieve the DT digis
0007                                 dtDigiLabel = cms.untracked.InputTag('dtunpacker'),
0008                                 # switch for time box booking
0009                                 doTbHistos = cms.untracked.bool(False),
0010                                 # the name of the 4D rec hits collection
0011                                 recHits4DLabel = cms.untracked.string('dt4DSegments'),
0012                                 # switch for segment veto
0013                                 doSegmentVeto = cms.untracked.bool(False),
0014                                 # safe margin (ns) between ttrig and beginning of counting area
0015                                 safeMargin = cms.untracked.double(100.)
0016                                 )