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  RPStatusWord = cms.untracked.uint32(0x8008), # rpots in readout:220_fr_hr; 210_fr_hr
12  verbosity = cms.untracked.uint32(0),
13  randomHLTPath = cms.untracked.string("HLT_Random_v3"),
14  offlinePlots = cms.untracked.bool(False),
15  onlinePlots = cms.untracked.bool(True),
16  turnOffPlanePlots = cms.untracked.vstring(), # add tags for planes to be shut off,
17  # e.g. "0_2_3_4" for arm 0 station 2 rp 3 plane 4
18 )
19 
20 ctppsPixelDQMOfflineSource = DQMEDAnalyzer('CTPPSPixelDQMSource',
21  tagRPixDigi = cms.untracked.InputTag("ctppsPixelDigis", ""),
22  tagRPixError = cms.untracked.InputTag("ctppsPixelDigis", ""),
23  tagRPixCluster = cms.untracked.InputTag("ctppsPixelClusters", ""),
24  tagRPixLTrack = cms.untracked.InputTag("ctppsPixelLocalTracks", ""),
25  tagTrigResults = cms.untracked.InputTag("TriggerResults","","HLT"),
26  RPStatusWord = cms.untracked.uint32(0x8008), # rpots in readout: 220_fr_hr; 210_fr_hr
27  verbosity = cms.untracked.uint32(0),
28  randomHLTPath = cms.untracked.string("HLT_Random_v3"),
29  offlinePlots = cms.untracked.bool(True),
30  onlinePlots = cms.untracked.bool(False),
31  turnOffPlanePlots = cms.untracked.vstring(), # add tags for planes to be shut off,
32  # e.g. "0_2_3_4" for arm 0 station 2 rp 3 plane 4
33 )