/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWIO/RNTupleTempInput/test/PoolInputTest_cfg.py
23 строки
710 B
Christopher Jones
All RNTupleTemp related files
03 дек 2025, 00:03
03 дек 2025, 00:03
fd9ee5f
Код
Авторство
О чём код?
# The following comments couldn't be translated into the new config version: # Configuration file for PoolInputTest import FWCore.ParameterSet.Config as cms process = cms.Process("TESTRECO") process.load("FWCore.Framework.test.cmsExceptionsFatal_cff") process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(-1) ) process.OtherThing = cms.EDProducer("OtherThingProducer") process.Analysis = cms.EDAnalyzer("OtherThingAnalyzer") process.source = cms.Source("RNTupleTempSource", setRunNumber = cms.untracked.uint32(621), fileNames = cms.untracked.vstring('file:PoolInputTest.root', 'file:PoolInputOther.root') ) process.p = cms.Path(process.OtherThing*process.Analysis)