1 import FWCore.ParameterSet.Config
as cms
3 from DQM.EcalMonitorTasks.OccupancyTask_cfi
import ecalOccupancyTask
6 deviationThreshold = 100.
8 ecalOccupancyClient = cms.untracked.PSet(
9 params = cms.untracked.PSet(
10 minHits = cms.untracked.int32(minHits),
11 deviationThreshold = cms.untracked.double(deviationThreshold)
13 sources = cms.untracked.PSet(
14 TPDigiThrAll = ecalOccupancyTask.MEs.TPDigiThrAll,
15 RecHitThrAll = ecalOccupancyTask.MEs.RecHitThrAll,
16 DigiAll = ecalOccupancyTask.MEs.DigiAll
18 MEs = cms.untracked.PSet(
19 QualitySummary = cms.untracked.PSet(
20 path = cms.untracked.string(
'%(subdet)s/%(prefix)sSummaryClient/%(prefix)sOT%(suffix)s hot cell quality summary'),
21 kind = cms.untracked.string(
'TH2F'),
22 otype = cms.untracked.string(
'Ecal3P'),
23 btype = cms.untracked.string(
'SuperCrystal'),
24 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.')