CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
DQMFileSaver_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # DQM file saver module
4 dqmSaver = cms.EDAnalyzer("DQMFileSaver",
5  # Possible conventions are "Online", "Offline" and "RelVal".
6  convention = cms.untracked.string('Offline'),
7  # Save files in plain ROOT or encode ROOT objects in ProtocolBuffer
8  fileFormat = cms.untracked.string('ROOT'),
9  # Name of the producer.
10  producer = cms.untracked.string('DQM'),
11  # Name of the processing workflow.
12  workflow = cms.untracked.string(''),
13  # Directory in which to save the files.
14  dirName = cms.untracked.string('.'),
15  # Only save this directory
16  filterName = cms.untracked.string(''),
17  # Version name to be used in file name.
18  version = cms.untracked.int32(1),
19  # runIsComplete
20  runIsComplete = cms.untracked.bool(False),
21 
22  # Save file every N lumi sections (-1: disabled)
23  saveByLumiSection = cms.untracked.int32(-1),
24  # Save file every N runs (-1: disabled)
25  saveByRun = cms.untracked.int32(-1),
26  # Save file at the end of the job
27  saveAtJobEnd = cms.untracked.bool(True),
28 
29  # Ignore run number for MC data (-1: disabled)
30  forceRunNumber = cms.untracked.int32(-1),
31 
32  # Control reference saving (default / skip / qtests / all)
33  referenceHandling = cms.untracked.string('all'),
34  # Control which references are saved for qtests (default: STATUS_OK)
35  referenceRequireStatus = cms.untracked.int32(100)
36 )