Skip to content

Commit

Permalink
Add dependencies for SiPixelPhase1Summary.
Browse files Browse the repository at this point in the history
  • Loading branch information
schneiml committed Jul 23, 2020
1 parent 2e93d41 commit 4df3118
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
9 changes: 9 additions & 0 deletions DQM/SiPixelPhase1Summary/python/SiPixelPhase1Summary_cfi.py
Expand Up @@ -9,6 +9,9 @@
TopFolderName = cms.string('PixelPhase1/Phase1_MechanicalView/'),
RunOnEndLumi = cms.bool(True),
RunOnEndJob = cms.bool(True),
# schedule this module to run *after* the QTests.
inputGeneration = cms.untracked.string('DQMGenerationQTest'),
outputGeneration = cms.untracked.string('DQMGenerationSummary'),
SummaryMaps = cms.VPSet(
cms.PSet(
MapName = cms.string("Digi"),
Expand Down Expand Up @@ -39,6 +42,9 @@
TopFolderName = cms.string('PixelPhase1/Phase1_MechanicalView/'),
RunOnEndLumi = cms.bool(False),
RunOnEndJob = cms.bool(True),
# schedule this module to run *after* the QTests.
inputGeneration = cms.untracked.string('DQMGenerationQTest'),
outputGeneration = cms.untracked.string('DQMGenerationSummary'),
SummaryMaps = cms.VPSet(
cms.PSet(
MapName = cms.string("Digi"),
Expand Down Expand Up @@ -69,6 +75,9 @@
TopFolderName = cms.string('PixelPhase1/Phase1_MechanicalView/'),
RunOnEndLumi = cms.bool(False),
RunOnEndJob = cms.bool(True),
# schedule this module to run *after* the QTests.
inputGeneration = cms.untracked.string('DQMGenerationQTest'),
outputGeneration = cms.untracked.string('DQMGenerationSummary'),
SummaryMaps = cms.VPSet(
cms.PSet(
MapName = cms.string("Digi"),
Expand Down
3 changes: 2 additions & 1 deletion DQM/SiPixelPhase1Summary/src/SiPixelPhase1Summary.cc
Expand Up @@ -46,7 +46,8 @@
using namespace std;
using namespace edm;

SiPixelPhase1Summary::SiPixelPhase1Summary(const edm::ParameterSet& iConfig) : conf_(iConfig), firstLumi(true) {
SiPixelPhase1Summary::SiPixelPhase1Summary(const edm::ParameterSet& iConfig)
: DQMEDHarvester(iConfig), conf_(iConfig), firstLumi(true) {
LogInfo("PixelDQM") << "SiPixelPhase1Summary::SiPixelPhase1Summary: Got DQM BackEnd interface" << endl;
topFolderName_ = conf_.getParameter<std::string>("TopFolderName");
runOnEndLumi_ = conf_.getParameter<bool>("RunOnEndLumi");
Expand Down

0 comments on commit 4df3118

Please sign in to comment.