File indexing completed on 2025-01-14 02:38:52
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process("COPY")
0004
0005 import FWCore.Framework.test.cmsExceptionsFatal_cff
0006 process.options = FWCore.Framework.test.cmsExceptionsFatal_cff.options
0007
0008 process.maxEvents.input = -1
0009
0010
0011 process.source = process.source = cms.Source("PoolSource",
0012 fileNames = cms.untracked.vstring('file:myout.root'),
0013 firstEvent = cms.untracked.uint64(10123456792)
0014 )
0015
0016 from FWCore.Framework.modules import RunLumiEventAnalyzer
0017 process.test = RunLumiEventAnalyzer(
0018 verbose = False,
0019 expectedRunLumiEvents = [
0020 1, 0, 0,
0021 1, 1, 0,
0022
0023
0024
0025 1, 1, 10123456792,
0026 1, 1, 10123456793,
0027 1, 1, 10123456794,
0028 1, 1, 10123456795,
0029 1, 1, 10123456796,
0030 1, 1, 10123456797,
0031 1, 1, 10123456798,
0032 1, 1, 10123456799,
0033 1, 1, 10123456800,
0034 1, 1, 10123456801,
0035 1, 1, 10123456802,
0036 1, 1, 10123456803,
0037 1, 1, 10123456804,
0038 1, 1, 10123456805,
0039 1, 1, 10123456806,
0040 1, 1, 10123456807,
0041 1, 1, 10123456808,
0042 1, 1, 10123456809,
0043 1, 1, 10123456810,
0044 1, 1, 10123456811,
0045 1, 1, 10123456812,
0046 1, 1, 10123456813,
0047 1, 1, 10123456814,
0048 1, 1, 10123456815,
0049 1, 1, 10123456816,
0050 1, 1, 10123456817,
0051 1, 1, 10123456818,
0052 1, 1, 10123456819,
0053 1, 1, 10123456820,
0054 1, 1, 10123456821,
0055 1, 1, 10123456822,
0056 1, 1, 10123456823,
0057 1, 1, 10123456824,
0058 1, 1, 10123456825,
0059 1, 1, 10123456826,
0060 1, 1, 10123456827,
0061 1, 1, 10123456828,
0062 1, 1, 10123456829,
0063 1, 1, 10123456830,
0064 1, 1, 10123456831,
0065 1, 1, 10123456832,
0066 1, 1, 10123456833,
0067 1, 1, 10123456834,
0068 1, 1, 10123456835,
0069 1, 1, 10123456836,
0070 1, 1, 10123456837,
0071 1, 1, 10123456838,
0072 1, 1, 0,
0073 1, 0, 0
0074 ],
0075 expectedEndingIndex = 153
0076 )
0077
0078 process.e = cms.EndPath(process.test)