Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update beampixel_dqm_sourceclient-live_cfg.py #7932

Merged
merged 1 commit into from
Feb 25, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@
process.phystrigger = cms.Sequence(process.hltTriggerTypeFilter)


### process customizations included here
#----------------------------
# Process Customizations
#----------------------------
from DQM.Integration.test.online_customizations_cfi import *
process = customise(process)

Expand Down Expand Up @@ -83,13 +85,13 @@
# If the histogram has at least "minNentries" then extract Mean and RMS,
# or, if we are performing the fit, the number of vertices must be greater
# than minNentries otherwise it waits for other nLumiReset
xRange = cms.double(2.0),
xRange = cms.double(1.0),
xStep = cms.double(0.001),
yRange = cms.double(2.0),
yRange = cms.double(1.0),
yStep = cms.double(0.001),
zRange = cms.double(30.0),
zStep = cms.double(0.05),
VxErrCorr = cms.double(1.3), # Keep checking this with later release
VxErrCorr = cms.double(1.3), # Keep checking this with later release
fileName = cms.string("/nfshome0/yumiceva/BeamMonitorDQM/BeamPixelResults.txt"))
if process.dqmSaver.producer.value() is "Playback":
process.pixelVertexDQM.fileName = cms.string("/nfshome0/dqmdev/BeamMonitorDQM/BeamPixelResults.txt")
Expand Down Expand Up @@ -162,13 +164,13 @@
# If the histogram has at least "minNentries" then extract Mean and RMS,
# or, if we are performing the fit, the number of vertices must be greater
# than minNentries otherwise it waits for other nLumiReset
xRange = cms.double(2.0),
xRange = cms.double(1.0),
xStep = cms.double(0.001),
yRange = cms.double(2.0),
yRange = cms.double(1.0),
yStep = cms.double(0.001),
zRange = cms.double(30.0),
zStep = cms.double(0.05),
VxErrCorr = cms.double(1.3), # Keep checking this with later release
VxErrCorr = cms.double(1.3), # Keep checking this with later release
fileName = cms.string("/nfshome0/yumiceva/BeamMonitorDQM/BeamPixelResults.txt"))
if process.dqmSaver.producer.value() is "Playback":
process.pixelVertexDQM.fileName = cms.string("/nfshome0/dqmdev/BeamMonitorDQM/BeamPixelResults.txt")
Expand All @@ -194,4 +196,3 @@
# Define Path
#----------------------------
process.p = cms.Path(process.phystrigger*process.reconstruction_step*process.pixelVertexDQM*process.dqmmodules)