/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DQM/EcalMonitorClient/python/SummaryClient_cfi.py
95 строк
5 KB
Marcel Andre Schneider
Disable perLumi for the summaries, not sure if it makes sense to have it.
03 фев 2020, 11:57
03 фев 2020, 11:57
e8578fb
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms from DQM.EcalMonitorClient.IntegrityClient_cfi import ecalIntegrityClient from DQM.EcalMonitorClient.PresampleClient_cfi import ecalPresampleClient from DQM.EcalMonitorClient.TimingClient_cfi import ecalTimingClient from DQM.EcalMonitorClient.RawDataClient_cfi import ecalRawDataClient from DQM.EcalMonitorClient.TrigPrimClient_cfi import ecalTrigPrimClient from DQM.EcalMonitorClient.OccupancyClient_cfi import ecalOccupancyClient from DQM.EcalMonitorTasks.IntegrityTask_cfi import ecalIntegrityTask from DQM.EcalMonitorTasks.RawDataTask_cfi import ecalRawDataTask activeSources = ['Integrity', 'RawData', 'Presample'] towerBadFraction = 0.8 fedBadFraction = 0.5 ecalSummaryClient = cms.untracked.PSet( params = cms.untracked.PSet( activeSources = cms.untracked.vstring(activeSources), towerBadFraction = cms.untracked.double(towerBadFraction), fedBadFraction = cms.untracked.double(fedBadFraction) ), sources = cms.untracked.PSet( Integrity = ecalIntegrityClient.MEs.QualitySummary, IntegrityByLumi = ecalIntegrityTask.MEs.ByLumi, Presample = ecalPresampleClient.MEs.QualitySummary, Timing = ecalTimingClient.MEs.QualitySummary, RawData = ecalRawDataClient.MEs.QualitySummary, DesyncByLumi = ecalRawDataTask.MEs.DesyncByLumi, FEByLumi = ecalRawDataTask.MEs.FEByLumi, FEStatusErrMapByLumi = ecalRawDataTask.MEs.FEStatusErrMapByLumi, TriggerPrimitives = ecalTrigPrimClient.MEs.EmulQualitySummary, HotCell = ecalOccupancyClient.MEs.QualitySummary, BXSRP = ecalRawDataTask.MEs.BXSRP, BXTCC = ecalRawDataTask.MEs.BXTCC ), MEs = cms.untracked.PSet( ReportSummaryMap = cms.untracked.PSet( path = cms.untracked.string('Ecal/EventInfo/reportSummaryMap'), kind = cms.untracked.string('TH2F'), otype = cms.untracked.string('Ecal'), btype = cms.untracked.string('DCC'), description = cms.untracked.string('') ), ReportSummaryContents = cms.untracked.PSet( path = cms.untracked.string('Ecal/EventInfo/reportSummaryContents/Ecal_%(sm)s'), kind = cms.untracked.string('REAL'), otype = cms.untracked.string('SM'), btype = cms.untracked.string('Report'), perLumi = cms.untracked.bool(False), description = cms.untracked.string('') ), GlobalSummary = cms.untracked.PSet( path = cms.untracked.string('Ecal/Errors/Global summary errors'), kind = cms.untracked.string('TH1F'), otype = cms.untracked.string('None'), btype = cms.untracked.string('User'), xaxis = cms.untracked.PSet( nbins = cms.untracked.int32(1), low = cms.untracked.double(0.), high = cms.untracked.double(1.), labels = cms.untracked.vstring(['ECAL status']) ), description = cms.untracked.string('Error summary used to trigger audio alarm. The value is identical to reportSummary.'), online = cms.untracked.bool(True) ), NBadFEDs = cms.untracked.PSet( path = cms.untracked.string('Ecal/Errors/Number of Bad Ecal FEDs'), kind = cms.untracked.string('TH1F'), otype = cms.untracked.string('None'), xaxis = cms.untracked.PSet( high = cms.untracked.double(1.0), nbins = cms.untracked.int32(1), low = cms.untracked.double(0.0) ), btype = cms.untracked.string('User'), online = cms.untracked.bool(True), description = cms.untracked.string('Number of FEDs with more than ' + str(fedBadFraction * 100) + '% of channels in bad status. Updated every lumi section.') ), QualitySummary = cms.untracked.PSet( path = cms.untracked.string('%(subdet)s/%(prefix)sSummaryClient/%(prefix)s global summary%(suffix)s'), kind = cms.untracked.string('TH2F'), otype = cms.untracked.string('Ecal3P'), btype = cms.untracked.string('Crystal'), description = cms.untracked.string('Summary of the data quality. A channel is red if it is red in any one of RawData, Integrity, Timing, TriggerPrimitives, and HotCells task. A cluster of bad towers in this plot will cause the ReportSummary for the FED to go to 0 in online DQM.') ), ReportSummary = cms.untracked.PSet( path = cms.untracked.string('Ecal/EventInfo/reportSummary'), kind = cms.untracked.string('REAL'), otype = cms.untracked.string('Ecal'), btype = cms.untracked.string('Report'), perLumi = cms.untracked.bool(False), description = cms.untracked.string('') ) ) )