/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DQMServices/FileIO/python/DQMFileSaverOnline_cfi.py
25 строк
878 B
andrius
Using a run number from the configuration in Online DQM output filenames
12 авг 2020, 16:20
12 авг 2020, 16:20
741ab91
Код
Авторство
О чём код?
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), )