CMS 3D CMS Logo

DQMFileSaverOnline_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("DQMFileSaverOnline",
5  # Name of the producer.
6  producer = cms.untracked.string('DQM'),
7  # Directory in which to save the files.
8  path = cms.untracked.string('./'),
9 
10  # Tag, used in the filename as the third term.
11  tag = cms.untracked.string('UNKNOWN'),
12 
13  # Control reference saving (default / skip / qtests / all)
14  referenceHandling = cms.untracked.string('all'),
15  # Control which references are saved for qtests (default: STATUS_OK)
16  referenceRequireStatus = cms.untracked.int32(100),
17 
18  # How often the backup file will be generated, in lumisections (-1 disables).
19  backupLumiCount = cms.untracked.int32(-1),
20 
21  # Set to true to preserve 'lumi backup'.
22  keepBackupLumi = cms.untracked.bool(False)
23 )