CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_7_hltpatch2/src/DQM/SiStripMonitorHardware/python/siStripFEDCheck_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 siStripFEDCheck = cms.EDAnalyzer("SiStripFEDCheckPlugin",
00004   #Directory to book histograms in
00005   DirName = cms.untracked.string('SiStrip/FEDIntegrity/'),
00006   #Raw data collection
00007   RawDataTag = cms.InputTag('source'),
00008   #Number of events to cache info before updating histograms
00009   #(set to zero to disable cache)
00010   #HistogramUpdateFrequency = cms.untracked.uint32(0),
00011   HistogramUpdateFrequency = cms.untracked.uint32(1000),
00012   #Print info about errors buffer dumps to LogInfo(SiStripFEDCheck)
00013   PrintDebugMessages = cms.untracked.bool(False),
00014   #Write the DQM store to a file (DQMStore.root) at the end of the run
00015   WriteDQMStore = cms.untracked.bool(False),
00016   #Use to disable all payload (non-fatal) checks
00017   DoPayloadChecks = cms.untracked.bool(True),
00018   #Use to disable check on channel lengths
00019   CheckChannelLengths = cms.untracked.bool(True),
00020   #Use to disable check on channel packet codes
00021   CheckChannelPacketCodes = cms.untracked.bool(True),
00022   #Use to disable check on FE unit lengths in full debug header
00023   CheckFELengths = cms.untracked.bool(True),
00024   #Use to disable check on channel status bits
00025   CheckChannelStatus = cms.untracked.bool(True),
00026 )