File indexing completed on 2023-03-17 11:10:19
0001
0002
0003
0004
0005 import FWCore.ParameterSet.Config as cms
0006
0007 process = cms.Process("TESTMERGE")
0008 process.load("FWCore.Framework.test.cmsExceptionsFatal_cff")
0009
0010 process.CPU = cms.Service("CPU",
0011 disableJobReportOutput = cms.untracked.bool(True)
0012 )
0013
0014 process.AdaptorConfig = cms.Service("AdaptorConfig",
0015 stats = cms.untracked.bool(False)
0016 )
0017
0018 process.maxEvents = cms.untracked.PSet(
0019 input = cms.untracked.int32(-1)
0020 )
0021 process.output = cms.OutputModule("PoolOutputModule",
0022 fileName = cms.untracked.string('file:FastMergex_out.root')
0023 )
0024
0025 process.source = cms.Source("PoolSource",
0026 fileNames = cms.untracked.vstring('file:FastMergeTest_1x.root',
0027 'file:FastMergeTest_2.root')
0028 )
0029
0030 process.ep = cms.EndPath(process.output)
0031
0032