Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:08:48

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
0004 siStripFEDCheck = DQMEDAnalyzer('SiStripFEDCheckPlugin',
0005   #Directory to book histograms in
0006   DirName = cms.untracked.string('SiStrip/FEDIntegrity/'),
0007   #Raw data collection
0008   RawDataTag = cms.InputTag('source'),
0009   #Number of events to cache info before updating histograms
0010   #(set to zero to disable cache)
0011   #HistogramUpdateFrequency = cms.untracked.uint32(0),
0012   HistogramUpdateFrequency = cms.untracked.uint32(1000),
0013   #Print info about errors buffer dumps to LogInfo(SiStripFEDCheck)
0014   PrintDebugMessages = cms.untracked.bool(False),
0015   doPLOTfedsPresent       = cms.bool(True),                                 
0016   doPLOTfedFatalErrors    = cms.bool(True),                                 
0017   doPLOTfedNonFatalErrors = cms.bool(True),                                 
0018   doPLOTnFEDinVsLS        = cms.bool(False),                                 
0019   doPLOTnFEDinWdataVsLS   = cms.bool(False),                                 
0020   #Write the DQM store to a file (DQMStore.root) at the end of the run
0021   WriteDQMStore = cms.untracked.bool(False),
0022   #Use to disable all payload (non-fatal) checks
0023   DoPayloadChecks = cms.untracked.bool(True),
0024   #Use to disable check on channel lengths
0025   CheckChannelLengths = cms.untracked.bool(True),
0026   #Use to disable check on channel packet codes
0027   CheckChannelPacketCodes = cms.untracked.bool(True),
0028   #Use to disable check on FE unit lengths in full debug header
0029   CheckFELengths = cms.untracked.bool(True),
0030   #Use to disable check on channel status bits
0031   CheckChannelStatus = cms.untracked.bool(True),
0032   LSBin = cms.int32(5000),
0033   LSMin = cms.double(0.5),
0034   LSMax = cms.double(5000.5),  
0035 )