CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
siStripFEDCheck_cfi.py
Go to the documentation of this file.
2 
3 siStripFEDCheck = cms.EDAnalyzer("SiStripFEDCheckPlugin",
4  #Directory to book histograms in
5  DirName = cms.untracked.string('SiStrip/FEDIntegrity/'),
6  #Raw data collection
7  RawDataTag = cms.InputTag('source'),
8  #Number of events to cache info before updating histograms
9  #(set to zero to disable cache)
10  #HistogramUpdateFrequency = cms.untracked.uint32(0),
11  HistogramUpdateFrequency = cms.untracked.uint32(1000),
12  #Print info about errors buffer dumps to LogInfo(SiStripFEDCheck)
13  PrintDebugMessages = cms.untracked.bool(False),
14  #Write the DQM store to a file (DQMStore.root) at the end of the run
15  WriteDQMStore = cms.untracked.bool(False),
16  #Use to disable all payload (non-fatal) checks
17  DoPayloadChecks = cms.untracked.bool(True),
18  #Use to disable check on channel lengths
19  CheckChannelLengths = cms.untracked.bool(True),
20  #Use to disable check on channel packet codes
21  CheckChannelPacketCodes = cms.untracked.bool(True),
22  #Use to disable check on FE unit lengths in full debug header
23  CheckFELengths = cms.untracked.bool(True),
24  #Use to disable check on channel status bits
25  CheckChannelStatus = cms.untracked.bool(True),
26 )