/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWCore/Integration/test/inputExtSourceTest_cfg.py
19 строк
475 B
W. David Dagenhart
Adjust to moving FromFiles to FWStorage/Catalog
20 мар 2026, 21:16
20 мар 2026, 21:16
d537630
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms process = cms.Process("TEST") process.load("FWCore.Framework.test.cmsExceptionsFatal_cff") process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(-1) ) process.source = cms.Source("ThingExtSource") process.OtherThing = cms.EDProducer("OtherThingProducer", thingTag = cms.InputTag('source') ) process.Analysis = cms.EDAnalyzer("OtherThingAnalyzer") process.p = cms.Path(process.OtherThing*process.Analysis)