/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWCore/Integration/test/inputSourceTest_cfg.py
20 строк
474 B
Christopher Jones
Added fillDescriptions to pick up new parameter default values
24 янв 2019, 18:32
24 янв 2019, 18:32
28de0c3
Код
Авторство
О чём код?
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(2) ) process.source = cms.Source("ThingSource" ) process.OtherThing = cms.EDProducer("OtherThingProducer", thingTag = cms.InputTag('source') ) process.Analysis = cms.EDAnalyzer("OtherThingAnalyzer") process.p = cms.Path(process.OtherThing * process.Analysis)