Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from DQM.EcalMonitorTasks.PNDiodeTask_cfi import ecalPNDiodeTask
0004 
0005 errFractionThreshold = 0.01
0006 
0007 ecalPNIntegrityClient = cms.untracked.PSet(
0008     params = cms.untracked.PSet(
0009         errFractionThreshold = cms.untracked.double(errFractionThreshold)
0010     ),
0011     sources = cms.untracked.PSet(
0012         Occupancy = ecalPNDiodeTask.MEs.Occupancy,
0013         MEMChId = ecalPNDiodeTask.MEs.MEMChId,
0014         MEMGain = ecalPNDiodeTask.MEs.MEMGain,
0015         MEMBlockSize = ecalPNDiodeTask.MEs.MEMBlockSize,
0016         MEMTowerId = ecalPNDiodeTask.MEs.MEMTowerId
0017     ),
0018     MEs = cms.untracked.PSet(
0019         QualitySummary = cms.untracked.PSet(
0020             path = cms.untracked.string('%(subdet)s/%(prefix)sSummaryClient/%(prefix)sIT PN integrity quality summary'),
0021             kind = cms.untracked.string('TH2F'),
0022             otype = cms.untracked.string('MEM2P'),
0023             btype = cms.untracked.string('Crystal'),
0024             description = cms.untracked.string('Summary of the data integrity in PN channels. A channel is red if more than ' + str(100 * errFractionThreshold) + '% of its entries have integrity errors.')
0025         )
0026     )
0027 )