CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
EcalMonitorClient_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from DQM.EcalCommon.CommonParams_cfi import ecalCommonParams
4 
5 from DQM.EcalMonitorClient.IntegrityClient_cfi import ecalIntegrityClient
6 from DQM.EcalMonitorClient.OccupancyClient_cfi import ecalOccupancyClient
7 from DQM.EcalMonitorClient.PresampleClient_cfi import ecalPresampleClient
8 from DQM.EcalMonitorClient.RawDataClient_cfi import ecalRawDataClient
9 from DQM.EcalMonitorClient.SelectiveReadoutClient_cfi import ecalSelectiveReadoutClient
10 from DQM.EcalMonitorClient.TimingClient_cfi import ecalTimingClient
11 from DQM.EcalMonitorClient.TrigPrimClient_cfi import ecalTrigPrimClient
12 from DQM.EcalMonitorClient.SummaryClient_cfi import ecalSummaryClient
13 
14 ecalMonitorClient = cms.EDAnalyzer("EcalDQMonitorClient",
15  moduleName = cms.untracked.string("Ecal Monitor Client"),
16  # workers to be turned on
17  workers = cms.untracked.vstring(
18  "IntegrityClient",
19  "OccupancyClient",
20  "PresampleClient",
21  "RawDataClient",
22  "TrigPrimClient",
23  "SummaryClient"
24  ),
25  # task parameters (included from indivitual cfis)
26  workerParameters = cms.untracked.PSet(
27  IntegrityClient = ecalIntegrityClient,
28  OccupancyClient = ecalOccupancyClient,
29  PresampleClient = ecalPresampleClient,
30  RawDataClient = ecalRawDataClient,
31  SelectiveReadoutClient = ecalSelectiveReadoutClient,
32  TimingClient = ecalTimingClient,
33  TrigPrimClient = ecalTrigPrimClient,
34  SummaryClient = ecalSummaryClient
35  ),
36  commonParameters = ecalCommonParams,
37  verbosity = cms.untracked.int32(0)
38 )
39