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  "TimingClient",
24  "SummaryClient"
25  ),
26  # task parameters (included from indivitual cfis)
27  workerParameters = cms.untracked.PSet(
28  IntegrityClient = ecalIntegrityClient,
29  OccupancyClient = ecalOccupancyClient,
30  PresampleClient = ecalPresampleClient,
31  RawDataClient = ecalRawDataClient,
32  SelectiveReadoutClient = ecalSelectiveReadoutClient,
33  TimingClient = ecalTimingClient,
34  TrigPrimClient = ecalTrigPrimClient,
35  SummaryClient = ecalSummaryClient
36  ),
37  commonParameters = ecalCommonParams,
38  verbosity = cms.untracked.int32(0)
39 )
40