CMS 3D CMS Logo

DQMSaverAtJobEnd_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # needed backend
5 
6 # needed output
8 
9 # modifications for run-dependent MC
10 from Configuration.ProcessModifiers.runDependent_cff import runDependent
11 
12 dqmSaver.convention = 'Offline'
13 dqmSaver.workflow = '/Global/CMSSW_X_Y_Z/RECO'
14 
15 
16 dqmSaver.saveByRun = -1
17 dqmSaver.saveAtJobEnd = True
18 dqmSaver.forceRunNumber = 999999
19 
20 DQMSaver = cms.Sequence(dqmSaver)
21 
22 runDependent.toModify(dqmSaver, forceRunNumber = 1)
23 
24 # configuration is modified as a side effect, this is just a placeholder
25 # to allow using this file as a customisation for cmsDriver.
26 def customise(process):
27  return process