Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
import FWCore.ParameterSet.Config as cms

process = cms.Process("TEST")

process.load("FWCore.MessageService.MessageLogger_cfi")
process.MessageLogger.cerr.FwkReport.reportEvery = 1000
process.MessageLogger.cerr.threshold = 'ERROR'

process.maxEvents = cms.untracked.PSet(
    input = cms.untracked.int32(-1)
)

process.source = cms.Source("PoolSource",
    fileNames = cms.untracked.vstring(
        'file:testRunMergeSPLIT101.root',
        'file:testRunMergeSPLIT102.root',
        'file:testRunMergeSPLIT103.root',
        'file:testRunMergeSPLIT101.root',
        'file:testRunMergeSPLIT102.root',
        'file:testRunMergeSPLIT103.root'
    ),
    lumisToProcess = cms.untracked.VLuminosityBlockRange('41:11-41:20', '42:21-42:25'),
    duplicateCheckMode = cms.untracked.string('noDuplicateCheck')
)

process.test = cms.EDAnalyzer("TestMergeResults",

    #   Check to see that the value we read matches what we know
    #   was written. Expected values listed below come in sets of three
    #      value expected in Thing
    #      value expected in ThingWithMerge
    #      value expected in ThingWithIsEqual
    #   Each set of 3 is tested at endRun for the expected
    #   run values or at endLuminosityBlock for the expected
    #   lumi values. And then the next set of three values
    #   is tested at the next endRun or endLuminosityBlock.
    #   When the sequence of parameter values is exhausted it stops checking

    expectedBeginRunProd = cms.untracked.vint32(
        10001,   10002,  10003,
        10001,   10002,  10003,
        10001,   10002,  10003,
        10001,   10002,  10003
    ),

    expectedEndRunProd = cms.untracked.vint32(
        100001,   100002,  100003,
        100001,   100002,  100003,
        100001,   100002,  100003,
        100001,   100002,  100003
    ),

    expectedEndRunProdImproperlyMerged = cms.untracked.vint32(
        0,   0,  0,
        0,   0,  0,
        0,   0,  0,
        0,   0,  0
    ),

    expectedBeginLumiProd = cms.untracked.vint32(
        101,       102,    103,
        101,       102,    103,
        101,       102,    103,
        101,       102,    103,
        101,       102,    103,
        101,       102,    103,
        101,       102,    103,
        101,       102,    103,
        101,       102,    103,
        101,       102,    103
    ),

    expectedEndLumiProd = cms.untracked.vint32(
        1001,       1002,    1003,
        1001,       1002,    1003,
        1001,       1002,    1003,
        1001,       1002,    1003,
        1001,       1002,    1003,
        1001,       1002,    1003,
        1001,       1002,    1003,
        1001,       1002,    1003,
        1001,       1002,    1003,
        1001,       1002,    1003
    ),

    expectedEndLumiProdImproperlyMerged = cms.untracked.vint32(
        0,   0,  0,
        0,   0,  0,
        0,   0,  0,
        0,   0,  0,
        0,   0,  0,
        0,   0,  0,
        0,   0,  0,
        0,   0,  0,
        0,   0,  0,
        0,   0,  0
    ),

    verbose = cms.untracked.bool(False)
)

process.thingWithMergeProducer = cms.EDProducer("ThingWithMergeProducer")
process.task = cms.Task(process.thingWithMergeProducer)

process.out = cms.OutputModule("PoolOutputModule",
    fileName = cms.untracked.string('testRunMergeTEST101.root')
)

process.e = cms.EndPath(process.test * process.out, process.task)