/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWCore/TestProcessor/python/TestSourceProcess.py
9 строк
377 B
Chris Jones
Added TestSourceProcessor testing helper
12 июл 2024, 22:47
12 июл 2024, 22:47
078d2cb
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms class TestSourceProcess(cms.Process): def __init__(self,name="TEST",*modifiers): super(TestSourceProcess,self).__init__(name,*modifiers) def fillProcessDesc(self, processPSet): if not hasattr(self,"options"): self.options = cms.untracked.PSet() cms.Process.fillProcessDesc(self,processPSet)