CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/DQMServices/Components/python/DQMFileSaver_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # DQM file saver module
00004 dqmSaver = cms.EDAnalyzer("DQMFileSaver",
00005     # Possible conventions are "Online", "Offline" and "RelVal".
00006     convention = cms.untracked.string('Offline'),
00007     # Name of the producer.
00008     producer = cms.untracked.string('DQM'),
00009     # Name of the processing workflow.
00010     workflow = cms.untracked.string(''),
00011     # Directory in which to save the files.
00012     dirName = cms.untracked.string('.'),
00013     # Version name to be used in file name.
00014     version = cms.untracked.int32(1),
00015     # runIsComplete
00016     runIsComplete = cms.untracked.bool(False),
00017 
00018     # Save file every N lumi sections (-1: disabled)
00019     saveByLumiSection = cms.untracked.int32(-1),
00020     # Save file every N events (-1: disabled)
00021     saveByEvent = cms.untracked.int32(-1),
00022     # Save file every N minutes (-1: disabled)
00023     saveByMinute = cms.untracked.int32(-1),
00024     # Save file every 2**N minutes until saveByTime > saveByMinute
00025     saveByTime = cms.untracked.int32(-1),
00026 
00027     # Save file every N runs (-1: disabled)
00028     saveByRun = cms.untracked.int32(1),
00029     # Save file at the end of the job
00030     saveAtJobEnd = cms.untracked.bool(False),
00031 
00032     # Ignore run number for MC data (-1: disabled)
00033     forceRunNumber = cms.untracked.int32(-1),
00034 
00035     # Control reference saving (default / skip / qtests / all)
00036     referenceHandling = cms.untracked.string('all'),
00037     # Control which references are saved for qtests (default: STATUS_OK)
00038     referenceRequireStatus = cms.untracked.int32(100)
00039 )