Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:10:13

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # DQM file saver module
0004 dqmSaver = cms.EDAnalyzer("DQMFileSaverOnline",
0005     # Name of the producer.
0006     producer = cms.untracked.string('DQM'),
0007     # Directory in which to save the files.
0008     path = cms.untracked.string('./'),
0009 
0010     # Tag, used in the filename as the third term.
0011     tag = cms.untracked.string('UNKNOWN'),
0012 
0013     # Control reference saving (default / skip / qtests / all)
0014     referenceHandling = cms.untracked.string('all'),
0015     # Control which references are saved for qtests (default: STATUS_OK)
0016     referenceRequireStatus = cms.untracked.int32(100),
0017 
0018     # How often the backup file will be generated, in lumisections (-1 disables).
0019     backupLumiCount = cms.untracked.int32(-1),
0020 
0021     # Set to true to preserve 'lumi backup'.
0022     keepBackupLumi = cms.untracked.bool(False),
0023 
0024     runNumber = cms.untracked.int32(111),
0025 )