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
|
import FWCore.ParameterSet.Config as cms
process = cms.Process("MERGE")
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:testRunMergeSPLIT103.root',
'file:testRunMergeSPLIT102.root'
),
lumisToProcess = cms.untracked.VLuminosityBlockRange('41:16-41:25', '42:16-42:20')
)
process.thingWithMergeProducer = cms.EDProducer("ThingWithMergeProducer")
process.task = cms.Task(process.thingWithMergeProducer)
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, 20004, 10003,
10001, 10002, 10003
),
expectedEndRunProd = cms.untracked.vint32(
100001, 200004, 100003,
100001, 100002, 100003
),
expectedEndRunProdImproperlyMerged = cms.untracked.vint32(
0, 0, 0,
0, 0, 0
)
)
process.out = cms.OutputModule("PoolOutputModule",
fileName = cms.untracked.string('testRunMergeMERGE101.root')
)
process.e = cms.EndPath(process.test * process.out, process.task)
|