CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
CertificationClient_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from DQM.EcalMonitorClient.TowerStatusTask_cfi import ecalTowerStatusTask
4 from DQM.EcalMonitorClient.SummaryClient_cfi import ecalSummaryClient
5 
6 ecalCertificationClient = cms.untracked.PSet(
7  sources = cms.untracked.PSet(
8  DQM = ecalSummaryClient.MEs.ReportSummaryContents,
9  DCS = ecalTowerStatusTask.MEs.DCSContents,
10  DAQ = ecalTowerStatusTask.MEs.DAQContents
11  ),
12  MEs = cms.untracked.PSet(
13  CertificationMap = cms.untracked.PSet(
14  path = cms.untracked.string('Ecal/EventInfo/CertificationSummaryMap'),
15  kind = cms.untracked.string('TH2F'),
16  otype = cms.untracked.string('Ecal'),
17  btype = cms.untracked.string('DCC'),
18  description = cms.untracked.string('')
19  ),
20  CertificationContents = cms.untracked.PSet(
21  path = cms.untracked.string('Ecal/EventInfo/CertificationContents/Ecal_%(sm)s'),
22  kind = cms.untracked.string('REAL'),
23  otype = cms.untracked.string('SM'),
24  btype = cms.untracked.string('Report'),
25  description = cms.untracked.string('')
26  ),
27  Certification = cms.untracked.PSet(
28  path = cms.untracked.string('Ecal/EventInfo/CertificationSummary'),
29  kind = cms.untracked.string('REAL'),
30  otype = cms.untracked.string('Ecal'),
31  btype = cms.untracked.string('Report'),
32  description = cms.untracked.string('')
33  )
34  )
35 )