File indexing completed on 2024-04-06 12:19:12
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.load("FWCore.MessageLogger.MessageLogger_cfi")
0009
0010 process.maxEvents = cms.untracked.PSet(
0011 input = cms.untracked.int32(-1)
0012 )
0013
0014 process.source = cms.Source("PoolSource",
0015 fileNames = cms.untracked.vstring('file:myout.root'),
0016 firstEvent = cms.untracked.uint64(10123456792)
0017 )
0018
0019 process.test = cms.EDAnalyzer('RunLumiEventAnalyzer',
0020 verbose = cms.untracked.bool(False),
0021 expectedRunLumiEvents = cms.untracked.vuint64(
0022 1, 0, 0,
0023 1, 1, 0,
0024
0025
0026
0027 1, 1, 10123456792,
0028 1, 1, 10123456793,
0029 1, 1, 10123456794,
0030 1, 1, 10123456795,
0031 1, 1, 10123456796,
0032 1, 1, 10123456797,
0033 1, 1, 10123456798,
0034 1, 1, 10123456799,
0035 1, 1, 10123456800,
0036 1, 1, 10123456801,
0037 1, 1, 10123456802,
0038 1, 1, 10123456803,
0039 1, 1, 10123456804,
0040 1, 1, 10123456805,
0041 1, 1, 10123456806,
0042 1, 1, 10123456807,
0043 1, 1, 10123456808,
0044 1, 1, 10123456809,
0045 1, 1, 10123456810,
0046 1, 1, 10123456811,
0047 1, 1, 10123456812,
0048 1, 1, 10123456813,
0049 1, 1, 10123456814,
0050 1, 1, 10123456815,
0051 1, 1, 10123456816,
0052 1, 1, 10123456817,
0053 1, 1, 10123456818,
0054 1, 1, 10123456819,
0055 1, 1, 10123456820,
0056 1, 1, 10123456821,
0057 1, 1, 10123456822,
0058 1, 1, 10123456823,
0059 1, 1, 10123456824,
0060 1, 1, 10123456825,
0061 1, 1, 10123456826,
0062 1, 1, 10123456827,
0063 1, 1, 10123456828,
0064 1, 1, 10123456829,
0065 1, 1, 10123456830,
0066 1, 1, 10123456831,
0067 1, 1, 10123456832,
0068 1, 1, 10123456833,
0069 1, 1, 10123456834,
0070 1, 1, 10123456835,
0071 1, 1, 10123456836,
0072 1, 1, 10123456837,
0073 1, 1, 10123456838,
0074 1, 1, 0,
0075 1, 0, 0
0076 ),
0077 expectedEndingIndex = cms.untracked.int32(153)
0078 )
0079
0080 process.e = cms.EndPath(process.test)