-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve IndexIntoFile for concurrent lumis/runs
- Loading branch information
Showing
20 changed files
with
2,521 additions
and
232 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
408 changes: 404 additions & 4 deletions
408
DataFormats/Provenance/test/indexIntoFile2_t.cppunit.cc
Large diffs are not rendered by default.
Oops, something went wrong.
434 changes: 406 additions & 28 deletions
434
DataFormats/Provenance/test/indexIntoFile3_t.cppunit.cc
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
# The purpose of this configuration is to prepare | ||
# input for a test of the noRunLumiSort configuration | ||
# parameter that has non-contiguous sequences of | ||
# events from the same run (and the same lumi). | ||
|
||
# It is expected there are 6 warnings that | ||
# print out while this runs related to merging. | ||
# The test should pass with these warnings. | ||
|
||
import FWCore.ParameterSet.Config as cms | ||
|
||
process = cms.Process("MERGE") | ||
|
||
process.source = cms.Source("PoolSource", | ||
fileNames = cms.untracked.vstring( | ||
'file:testRunMerge1.root', | ||
'file:testRunMerge2.root', | ||
'file:testRunMerge3.root' | ||
), | ||
inputCommands = cms.untracked.vstring( | ||
'keep *', | ||
'drop *_A_*_*', | ||
'drop *_B_*_*', | ||
'drop *_C_*_*', | ||
'drop *_D_*_*', | ||
'drop *_E_*_*', | ||
'drop *_F_*_*', | ||
'drop *_G_*_*', | ||
'drop *_H_*_*', | ||
'drop *_I_*_*', | ||
'drop *_J_*_*', | ||
'drop *_K_*_*', | ||
'drop *_L_*_*', | ||
'drop *_tryNoPut_*_*', | ||
'drop *_aliasForThingToBeDropped2_*_*', | ||
'drop *_dependsOnThingToBeDropped1_*_*', | ||
'drop *_makeThingToBeDropped_*_*', | ||
'drop edmtestThingWithMerge_makeThingToBeDropped1_*_*', | ||
'drop edmtestThing_*_*_*' | ||
) | ||
) | ||
|
||
process.thingWithMergeProducer = cms.EDProducer("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 | ||
# 0's are just placeholders, if the value is a "0" the check is not made. | ||
|
||
expectedBeginRunProd = cms.untracked.vint32( | ||
0, 20004, 10003, # File boundary before this causing merge | ||
0, 10002, 10003, | ||
0, 10002, 10004 | ||
), | ||
expectedEndRunProd = cms.untracked.vint32( | ||
0, 200004, 100003, # File boundary before this causing merge | ||
0, 100002, 100003, | ||
0, 100002, 100004 | ||
), | ||
expectedBeginLumiProd = cms.untracked.vint32( | ||
0, 204, 103, # File boundary before this causing merge | ||
0, 102, 103, | ||
0, 102, 104 | ||
), | ||
expectedEndLumiProd = cms.untracked.vint32( | ||
0, 2004, 1003, # File boundary before this causing merge | ||
0, 1002, 1003, | ||
0, 1002, 1004 | ||
), | ||
expectedBeginRunNew = cms.untracked.vint32( | ||
0, 10002, 10003, | ||
0, 10002, 10003, | ||
0, 10002, 10003 | ||
), | ||
expectedEndRunNew = cms.untracked.vint32( | ||
0, 100002, 100003, | ||
0, 100002, 100003, | ||
0, 100002, 100003 | ||
), | ||
expectedBeginLumiNew = cms.untracked.vint32( | ||
0, 102, 103, | ||
0, 102, 103, | ||
0, 102, 103 | ||
), | ||
expectedEndLumiNew = cms.untracked.vint32( | ||
0, 1002, 1003, | ||
0, 1002, 1003, | ||
0, 1002, 1003 | ||
) | ||
) | ||
|
||
process.out = cms.OutputModule("PoolOutputModule", | ||
fileName = cms.untracked.string('testRunMergeMERGE6.root') | ||
) | ||
|
||
process.path1 = cms.Path(process.thingWithMergeProducer + process.test) | ||
process.e = cms.EndPath(process.out) |
116 changes: 116 additions & 0 deletions
116
FWCore/Integration/test/testRunMergeNoRunLumiSort_cfg.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
# A test of the noRunLumiSort configuration parameter | ||
# where the input has non-contiguous event sequences | ||
# from the same run. | ||
|
||
# It is expected there are 8 warnings and 8 errors that | ||
# print out while this runs related to merging. | ||
# The test should pass with these errors and warnings. | ||
|
||
import FWCore.ParameterSet.Config as cms | ||
|
||
process = cms.Process("NORUNLUMISORT") | ||
|
||
process.source = cms.Source("PoolSource", | ||
fileNames = cms.untracked.vstring( | ||
'file:testRunMergeMERGE6.root', | ||
'file:testRunMergeMERGE6.root' | ||
), | ||
duplicateCheckMode = cms.untracked.string('checkEachRealDataFile'), | ||
noRunLumiSort = cms.untracked.bool(True) | ||
) | ||
|
||
process.test2 = cms.EDAnalyzer('RunLumiEventAnalyzer', | ||
verbose = cms.untracked.bool(True), | ||
expectedRunLumiEvents = cms.untracked.vuint32( | ||
1, 0, 0, | ||
1, 1, 0, | ||
1, 1, 11, | ||
1, 1, 12, | ||
1, 1, 13, | ||
1, 1, 14, | ||
1, 1, 15, | ||
1, 1, 16, | ||
1, 1, 17, | ||
1, 1, 18, | ||
1, 1, 19, | ||
1, 1, 20, | ||
1, 1, 21, | ||
1, 1, 22, | ||
1, 1, 23, | ||
1, 1, 24, | ||
1, 1, 25, | ||
1, 1, 0, | ||
1, 0, 0, | ||
2, 0, 0, | ||
2, 1, 0, | ||
2, 1, 1, | ||
2, 1, 2, | ||
2, 1, 3, | ||
2, 1, 4, | ||
2, 1, 5, | ||
2, 1, 0, | ||
2, 0, 0, | ||
1, 0, 0, | ||
1, 1, 0, | ||
1, 1, 1, | ||
1, 1, 2, | ||
1, 1, 3, | ||
1, 1, 4, | ||
1, 1, 5, | ||
1, 1, 6, | ||
1, 1, 7, | ||
1, 1, 8, | ||
1, 1, 9, | ||
1, 1, 10 | ||
) | ||
) | ||
process.test2.expectedRunLumiEvents.extend([ | ||
1, 1, 11, | ||
1, 1, 12, | ||
1, 1, 13, | ||
1, 1, 14, | ||
1, 1, 15, | ||
1, 1, 16, | ||
1, 1, 17, | ||
1, 1, 18, | ||
1, 1, 19, | ||
1, 1, 20, | ||
1, 1, 21, | ||
1, 1, 22, | ||
1, 1, 23, | ||
1, 1, 24, | ||
1, 1, 25, | ||
1, 1, 0, | ||
1, 0, 0, | ||
2, 0, 0, | ||
2, 1, 0, | ||
2, 1, 1, | ||
2, 1, 2, | ||
2, 1, 3, | ||
2, 1, 4, | ||
2, 1, 5, | ||
2, 1, 0, | ||
2, 0, 0, | ||
1, 0, 0, | ||
1, 1, 0, | ||
1, 1, 1, | ||
1, 1, 2, | ||
1, 1, 3, | ||
1, 1, 4, | ||
1, 1, 5, | ||
1, 1, 6, | ||
1, 1, 7, | ||
1, 1, 8, | ||
1, 1, 9, | ||
1, 1, 10, | ||
1, 1, 0, | ||
1, 0, 0, | ||
]) | ||
|
||
process.out = cms.OutputModule("PoolOutputModule", | ||
fileName = cms.untracked.string('testRunMergeNoRunLumiSort.root') | ||
) | ||
|
||
process.path1 = cms.Path(process.test2) | ||
|
||
process.e = cms.EndPath(process.out) |
Oops, something went wrong.