/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
IOPool/Common/test/FastMergeTest_cfg.py
30 строк
830 B
Christopher Jones
Renamed AdaptorConfig to TFileAdaptor
17 дек 2025, 22:45
17 дек 2025, 22:45
3690d77
Код
Авторство
О чём код?
# The following comments couldn't be translated into the new config version: # Configuration file for FastMergeTest import FWCore.ParameterSet.Config as cms process = cms.Process("TESTMERGE") process.load("FWCore.Framework.test.cmsExceptionsFatal_cff") process.CPU = cms.Service("CPU", disableJobReportOutput = cms.untracked.bool(True) ) process.TFileAdaptor = cms.Service("TFileAdaptor", stats = cms.untracked.bool(False) ) process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(-1) ) process.output = cms.OutputModule("PoolOutputModule", fileName = cms.untracked.string('file:FastMerge_out.root') ) process.source = cms.Source("PoolSource", fileNames = cms.untracked.vstring('file:FastMergeTest_1.root', 'file:FastMergeTest_2.root') ) process.ep = cms.EndPath(process.output)