File indexing completed on 2024-04-06 12:07:15
0001 import FWCore.ParameterSet.Config as cms
0002
0003 from DQM.EcalMonitorClient.TowerStatusTask_cfi import ecalTowerStatusTask
0004 from DQM.EcalMonitorClient.SummaryClient_cfi import ecalSummaryClient
0005
0006 ecalCertificationClient = cms.untracked.PSet(
0007 sources = cms.untracked.PSet(
0008 DQM = ecalSummaryClient.MEs.ReportSummaryContents,
0009 DCS = ecalTowerStatusTask.MEs.DCSContents,
0010 DAQ = ecalTowerStatusTask.MEs.DAQContents
0011 ),
0012 MEs = cms.untracked.PSet(
0013 CertificationMap = cms.untracked.PSet(
0014 path = cms.untracked.string('Ecal/EventInfo/CertificationSummaryMap'),
0015 kind = cms.untracked.string('TH2F'),
0016 otype = cms.untracked.string('Ecal'),
0017 btype = cms.untracked.string('DCC'),
0018 description = cms.untracked.string('')
0019 ),
0020 CertificationContents = cms.untracked.PSet(
0021 path = cms.untracked.string('Ecal/EventInfo/CertificationContents/Ecal_%(sm)s'),
0022 kind = cms.untracked.string('REAL'),
0023 otype = cms.untracked.string('SM'),
0024 btype = cms.untracked.string('Report'),
0025 description = cms.untracked.string('')
0026 ),
0027 Certification = cms.untracked.PSet(
0028 path = cms.untracked.string('Ecal/EventInfo/CertificationSummary'),
0029 kind = cms.untracked.string('REAL'),
0030 otype = cms.untracked.string('Ecal'),
0031 btype = cms.untracked.string('Report'),
0032 description = cms.untracked.string('')
0033 )
0034 )
0035 )