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.OccupancyTask_cfi import ecalOccupancyTask
0004 
0005 minHits = 20
0006 deviationThreshold = 100.
0007 
0008 ecalOccupancyClient = cms.untracked.PSet(
0009     params = cms.untracked.PSet(
0010         minHits = cms.untracked.int32(minHits),
0011         deviationThreshold = cms.untracked.double(deviationThreshold)
0012     ),
0013     sources = cms.untracked.PSet(
0014         TPDigiThrAll = ecalOccupancyTask.MEs.TPDigiThrAll,
0015         RecHitThrAll = ecalOccupancyTask.MEs.RecHitThrAll,
0016         DigiAll = ecalOccupancyTask.MEs.DigiAll
0017     ),
0018     MEs = cms.untracked.PSet(
0019         QualitySummary = cms.untracked.PSet(
0020             path = cms.untracked.string('%(subdet)s/%(prefix)sSummaryClient/%(prefix)sOT%(suffix)s hot cell quality summary'),
0021             kind = cms.untracked.string('TH2F'),
0022             otype = cms.untracked.string('Ecal3P'),
0023             btype = cms.untracked.string('SuperCrystal'),
0024             description = cms.untracked.string('Summary of the hot cell monitor. A channel is red if it has more than ' + str(deviationThreshold) + ' times more entries than phi-ring mean in either digi, rec hit (filtered), or TP digi (filtered). Channels with less than ' + str(minHits) + ' entries are not considered. Channel names of the hot cells are available in (Top) / Ecal / Errors / HotCells.')
0025         )
0026 #        HotTPDigiThr = cms.untracked.PSet(
0027 #            path = cms.untracked.string('Ecal/Errors/HotCells/TPDigiThres/'),
0028 #            kind = cms.untracked.string('TH1F'),
0029 #            otype = cms.untracked.string('Channel'),
0030 #            btype = cms.untracked.string('TriggerTower'),
0031 #            description = cms.untracked.string('')
0032 #        ),
0033 #        HotRecHitThr = cms.untracked.PSet(
0034 #            path = cms.untracked.string('Ecal/Errors/HotCells/RecHitThres/'),
0035 #            kind = cms.untracked.string('TH1F'),
0036 #            otype = cms.untracked.string('Channel'),
0037 #            btype = cms.untracked.string('Crystal'),
0038 #            description = cms.untracked.string('')            
0039 #        ),
0040 #        HotDigi = cms.untracked.PSet(
0041 #            path = cms.untracked.string('Ecal/Errors/HotCells/Digi/'),
0042 #            kind = cms.untracked.string('TH1F'),
0043 #            otype = cms.untracked.string('Channel'),
0044 #            btype = cms.untracked.string('Crystal'),
0045 #            description = cms.untracked.string('')
0046 #        )
0047     )
0048 )