/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DetectorDescription/OfflineDBLoader/test/dumpit.py
23 строки
893 B
Ianna Osborne
Offline DB Loader clean up
02 дек 2016, 13:43
02 дек 2016, 13:43
4861308
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms process = cms.Process("GeometryTest") process.load("Geometry.CMSCommonData.cmsIdealGeometryXML_cfi") process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(1) ) process.source = cms.Source("EmptyIOVSource", lastValue = cms.uint64(1), timetype = cms.string('runnumber'), firstValue = cms.uint64(1), interval = cms.uint64(1) ) process.load = cms.EDAnalyzer("OutputDDToDDL", rotNumSeed = cms.int32(0), fileName = cms.untracked.string("fred.xml") ) process.myprint = cms.OutputModule("AsciiOutputModule") process.p1 = cms.Path(process.load) process.ep = cms.EndPath(process.myprint)