CMS 3D CMS Logo

dtNoiseAnalysis_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 from DQMServices.Core.DQMEDHarvester import DQMEDHarvester
3 
4 dtNoiseAnalysisMonitor = DQMEDHarvester("DTNoiseAnalysisTest",
5  noisyCellDef = cms.untracked.int32(500), # (in Hz): for cosmics 500 Hz, based on runs 341052 and 339579, variable chamber by chamber for collisions
6  isCosmics = cms.untracked.bool(False),
7  doSynchNoise = cms.untracked.bool(False),
8  detailedAnalysis = cms.untracked.bool(False),
9  maxSynchNoiseRate = cms.untracked.double(0.001),
10  noiseSafetyFactor = cms.untracked.double(5.),
11  nEventsCert = cms.untracked.int32(1000)
12  )
13 
14 
15