Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:19:05

0001 # The following comments couldn't be translated into the new config version:
0002 
0003 # Configuration file for FastMergeTest
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:FastMerge_out.root')
0023 )
0024 
0025 process.source = cms.Source("PoolSource",
0026     fileNames = cms.untracked.vstring('file:FastMergeTest_1.root', 
0027         'file:FastMergeTest_2.root')
0028 )
0029 
0030 process.ep = cms.EndPath(process.output)
0031 
0032