/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWIO/RNTupleTempInput/test/PoolAliasTestStep2A_cfg.py
21 строка
594 B
Christopher Jones
All RNTupleTemp related files
03 дек 2025, 00:03
03 дек 2025, 00:03
fd9ee5f
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms process = cms.Process("TESTANALYSIS") process.load("FWCore.Framework.test.cmsExceptionsFatal_cff") process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(-1) ) process.Analysis = cms.EDAnalyzer("OtherThingAnalyzer") process.source = cms.Source("RNTupleTempSource", setRunNumber = cms.untracked.uint32(621), fileNames = cms.untracked.vstring('file:step1.root') ) process.OtherThing = cms.EDProducer("OtherThingProducer", thingTag = cms.InputTag("AltThing") ) process.p = cms.Path(process.OtherThing*process.Analysis)