File indexing completed on 2024-04-06 12:19:05
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.AdaptorConfig = cms.Service("AdaptorConfig",
0011 stats = cms.untracked.bool(False)
0012 )
0013
0014 process.maxEvents = cms.untracked.PSet(
0015 input = cms.untracked.int32(-1)
0016 )
0017 process.output = cms.OutputModule("PoolOutputModule",
0018 fileName = cms.untracked.string('file:FastMerge_ancestor_out.root')
0019 )
0020
0021 process.source = cms.Source("PoolSource",
0022 fileNames = cms.untracked.vstring('file:FastMergeTest_ancestor1.root',
0023 'file:FastMergeTest_ancestor2.root')
0024 )
0025
0026 process.ep = cms.EndPath(process.output)
0027
0028