/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DQMServices/Demo/python/ExampleConfig_cfg.py
21 строка
586 B
Marcel Andre Schneider
Import DQMServices/Demo from new DQMStore branch.
13 янв 2020, 13:19
13 янв 2020, 13:19
ad930d2
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms process = cms.Process("Demo") process.load("FWCore.MessageService.MessageLogger_cfi") process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(-1) ) process.source = cms.Source("PoolSource", # replace 'myfile.root' with the source file you want to use fileNames = cms.untracked.vstring( 'file:myfile.root' ) ) process.load("DQMServices.Demo.demo_cfi") process.DQMStore = cms.Service("DQMStore") process.load("DQMServices.FileIO.DQMFileSaverOnline_cfi") process.p = cms.Path(process.demo + process.dqmSaver)