Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-01-14 02:38:51

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process("READTESTMERGE")
0004 process.load("FWCore.Framework.test.cmsExceptionsFatal_cff")
0005 
0006 from IOPool.TFileAdaptor.modules import AdaptorConfig
0007 process.add_(AdaptorConfig(stats = False))
0008 
0009 process.maxEvents.input = -1
0010 
0011 from IOPool.Output.modules import PoolOutputModule
0012 process.output = PoolOutputModule(fileName = 'ReadFastMerge_out.root')
0013 
0014 from IOPool.Input.modules import PoolSource
0015 process.source = PoolSource(
0016     fileNames = [
0017       'file:FastMerge_out.root',
0018       'file:FastMergeRL_out.root',
0019       'file:FastMergeR_out.root',
0020     ]
0021 )
0022 
0023 from FWCore.Framework.modules import RunLumiEventAnalyzer
0024 process.test = RunLumiEventAnalyzer(
0025     verbose = True,
0026     expectedRunLumiEvents = [
0027 100, 0, 0,
0028 100, 1, 0,
0029 100, 1, 1,
0030 100, 1, 2,
0031 100, 1, 3,
0032 100, 1, 4,
0033 100, 1, 5,
0034 100, 1, 6,
0035 100, 1, 7,
0036 100, 1, 8,
0037 100, 1, 9,
0038 100, 1, 10,
0039 100, 1, 0,
0040 100, 0, 0,
0041 200, 0, 0,
0042 200, 1, 0,
0043 200, 1, 100,
0044 200, 1, 101,
0045 200, 1, 102,
0046 200, 1, 103,
0047 200, 1, 104,
0048 200, 1, 105,
0049 200, 1, 106,
0050 200, 1, 107,
0051 200, 1, 108,
0052 200, 1, 109,
0053 200, 1, 110,
0054 200, 1, 111,
0055 200, 1, 112,
0056 200, 1, 113,
0057 200, 1, 114,
0058 200, 1, 0,
0059 200, 0, 0,
0060 100, 0, 0,
0061 100, 1, 0,
0062 100, 1, 0,
0063 100, 0, 0,
0064 200, 0, 0,
0065 200, 1, 0,
0066 200, 1, 0,
0067 200, 0, 0,
0068 100, 0, 0,
0069 100, 0, 0,
0070 200, 0, 0,
0071 200, 0, 0
0072 ]
0073 )
0074 
0075 process.path1 = cms.Path(process.test)
0076 
0077 process.ep = cms.EndPath(process.output)