Skip to content

Commit

Permalink
Merge pull request #12650 from threus/pixelOnlineDQMconfig_80x
Browse files Browse the repository at this point in the history
modifications for Pixel online DQM config for HI run (80x)
  • Loading branch information
cmsbuild committed Dec 8, 2015
2 parents e8c28bd + a7f1c7e commit 20964d6
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions DQM/Integration/python/clients/pixel_dqm_sourceclient-live_cfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#'siPixelClusters',
'SiPixelRawDataErrorSource',
'SiPixelDigiSource',
'sipixelEDAClient'),
'sipixelEDAClient'),
cout = cms.untracked.PSet(threshold = cms.untracked.string('ERROR')),
destinations = cms.untracked.vstring('cout')
)
Expand Down Expand Up @@ -131,14 +131,19 @@
#--------------------------
# Scheduling
#--------------------------
process.Reco = cms.Sequence(process.siPixelDigis*process.siPixelClusters)
process.DQMmodules = cms.Sequence(process.dqmEnv*process.qTester*process.dqmSaver)

process.SiPixelDigiSource.layOn = True
process.SiPixelDigiSource.diskOn = True
process.DQMmodules = cms.Sequence(process.dqmEnv*process.qTester*process.dqmSaver)

process.p = cms.Path(process.Reco*process.DQMmodules*process.SiPixelRawDataErrorSource*process.SiPixelDigiSource*process.SiPixelClusterSource*process.PixelP5DQMClientWithDataCertification)
if (process.runType.getRunType() == process.runType.hi_run):
process.Reco = cms.Sequence(process.siPixelDigis*process.pixeltrackerlocalreco)
process.SiPixelClusterSource.src = cms.InputTag("siPixelClustersPreSplitting")

else:
process.Reco = cms.Sequence(process.siPixelDigis*process.siPixelClusters)

process.p = cms.Path(process.Reco*process.DQMmodules*process.SiPixelRawDataErrorSource*process.SiPixelDigiSource*process.SiPixelClusterSource*process.PixelP5DQMClientWithDataCertification)

### process customizations included here
from DQM.Integration.config.online_customizations_cfi import *
process = customise(process)
Expand All @@ -148,4 +153,3 @@
#--------------------------------------------------

print "Running with run type = ", process.runType.getRunType()

0 comments on commit 20964d6

Please sign in to comment.