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.
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  # Name of the producer.
8  producer = cms.untracked.string('DQM'),
9  # Name of the processing workflow.
10  workflow = cms.untracked.string(''),
11  # Directory in which to save the files.
12  dirName = cms.untracked.string('.'),
13  # Version name to be used in file name.
14  version = cms.untracked.int32(1),
15  # runIsComplete
16  runIsComplete = cms.untracked.bool(False),
17 
18  # Save file every N lumi sections (-1: disabled)
19  saveByLumiSection = cms.untracked.int32(-1),
20  # Save file every N events (-1: disabled)
21  saveByEvent = cms.untracked.int32(-1),
22  # Save file every N minutes (-1: disabled)
23  saveByMinute = cms.untracked.int32(-1),
24  # Save file every 2**N minutes until saveByTime > saveByMinute
25  saveByTime = cms.untracked.int32(-1),
26 
27  # Save file every N runs (-1: disabled)
28  saveByRun = cms.untracked.int32(1),
29  # Save file at the end of the job
30  saveAtJobEnd = cms.untracked.bool(False),
31 
32  # Ignore run number for MC data (-1: disabled)
33  forceRunNumber = cms.untracked.int32(-1),
34 
35  # Control reference saving (default / skip / qtests / all)
36  referenceHandling = cms.untracked.string('all'),
37  # Control which references are saved for qtests (default: STATUS_OK)
38  referenceRequireStatus = cms.untracked.int32(100)
39 )