CMS 3D CMS Logo

ctppsPixelDQMSource_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #ctppsPixelDQMSource = cms.EDAnalyzer("CTPPSPixelDQMSource",
4 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
5 ctppsPixelDQMSource = DQMEDAnalyzer('CTPPSPixelDQMSource',
6  tagRPixDigi = cms.untracked.InputTag("ctppsPixelDigis", ""),
7  tagRPixError = cms.untracked.InputTag("ctppsPixelDigis", ""),
8  tagRPixCluster = cms.untracked.InputTag("ctppsPixelClusters", ""),
9  tagRPixLTrack = cms.untracked.InputTag("ctppsPixelLocalTracks", ""),
10  tagTrigResults = cms.untracked.InputTag("TriggerResults","","HLT"),
11  mappingLabel = cms.untracked.string("RPix"),
12  RPStatusWord = cms.untracked.uint32(0x8008), # rpots in readout:220_fr_hr; 210_fr_hr
13  verbosity = cms.untracked.uint32(0),
14  randomHLTPath = cms.untracked.string("HLT_Random_v3"),
15  offlinePlots = cms.untracked.bool(False),
16  onlinePlots = cms.untracked.bool(True),
17  turnOffPlanePlots = cms.untracked.vstring(), # add tags for planes to be shut off,
18  # e.g. "0_2_3_4" for arm 0 station 2 rp 3 plane 4
19 )
20 
21 ctppsPixelDQMOfflineSource = DQMEDAnalyzer('CTPPSPixelDQMSource',
22  tagRPixDigi = cms.untracked.InputTag("ctppsPixelDigis", ""),
23  tagRPixError = cms.untracked.InputTag("ctppsPixelDigis", ""),
24  tagRPixCluster = cms.untracked.InputTag("ctppsPixelClusters", ""),
25  tagRPixLTrack = cms.untracked.InputTag("ctppsPixelLocalTracks", ""),
26  tagTrigResults = cms.untracked.InputTag("TriggerResults","","HLT"),
27  mappingLabel = cms.untracked.string("RPix"),
28  RPStatusWord = cms.untracked.uint32(0x8008), # rpots in readout: 220_fr_hr; 210_fr_hr
29  verbosity = cms.untracked.uint32(0),
30  randomHLTPath = cms.untracked.string("HLT_Random_v3"),
31  offlinePlots = cms.untracked.bool(True),
32  onlinePlots = cms.untracked.bool(False),
33  turnOffPlanePlots = cms.untracked.vstring(), # add tags for planes to be shut off,
34  # e.g. "0_2_3_4" for arm 0 station 2 rp 3 plane 4
35 )