Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
import FWCore.ParameterSet.Config as cms

# DQM file saver module
dqmSaver = cms.EDAnalyzer("DQMFileSaverOnline",
    # Name of the producer.
    producer = cms.untracked.string('DQM'),
    # Directory in which to save the files.
    path = cms.untracked.string('./'),

    # Tag, used in the filename as the third term.
    tag = cms.untracked.string('UNKNOWN'),

    # Control reference saving (default / skip / qtests / all)
    referenceHandling = cms.untracked.string('all'),
    # Control which references are saved for qtests (default: STATUS_OK)
    referenceRequireStatus = cms.untracked.int32(100),

    # How often the backup file will be generated, in lumisections (-1 disables).
    backupLumiCount = cms.untracked.int32(-1),

    # Set to true to preserve 'lumi backup'.
    keepBackupLumi = cms.untracked.bool(False),

    runNumber = cms.untracked.int32(111),
)