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  # Enable MultiThread behaviour, i.e., save only MonitorElements
18  # indexed by the current Run
19  enableMultiThread = cms.untracked.bool(False),
20 
21  # Save file every N lumi sections (-1: disabled)
22  saveByLumiSection = cms.untracked.int32(-1),
23  # Save file every N events (-1: disabled)
24  saveByEvent = cms.untracked.int32(-1),
25  # Save file every N minutes (-1: disabled)
26  saveByMinute = cms.untracked.int32(-1),
27  # Save file every 2**N minutes until saveByTime > saveByMinute
28  saveByTime = cms.untracked.int32(-1),
29 
30  # Save file every N runs (-1: disabled)
31  saveByRun = cms.untracked.int32(1),
32  # Save file at the end of the job
33  saveAtJobEnd = cms.untracked.bool(False),
34 
35  # Ignore run number for MC data (-1: disabled)
36  forceRunNumber = cms.untracked.int32(-1),
37 
38  # Control reference saving (default / skip / qtests / all)
39  referenceHandling = cms.untracked.string('all'),
40  # Control which references are saved for qtests (default: STATUS_OK)
41  referenceRequireStatus = cms.untracked.int32(100)
42 )