File indexing completed on 2023-03-17 11:03:04
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015 import FWCore.ParameterSet.Config as cms
0016
0017 process = cms.Process("MERGE")
0018
0019 process.load("FWCore.MessageService.MessageLogger_cfi")
0020
0021 import FWCore.Framework.test.cmsExceptionsFatalOption_cff
0022 process.options = cms.untracked.PSet(
0023 Rethrow = FWCore.Framework.test.cmsExceptionsFatalOption_cff.Rethrow
0024 )
0025
0026 process.source = cms.Source("PoolSource",
0027 fileNames = cms.untracked.vstring(
0028 'file:testRunMerge6.root'
0029 )
0030 , duplicateCheckMode = cms.untracked.string('checkAllFilesOpened')
0031 )
0032
0033 process.out = cms.OutputModule("PoolOutputModule",
0034 fileName = cms.untracked.string('test.root')
0035
0036 )
0037
0038 process.testThrow = cms.EDAnalyzer("TestFailuresAnalyzer",
0039 whichFailure = cms.int32(5),
0040 eventToThrow = cms.untracked.uint64(2)
0041 )
0042
0043 process.p = cms.Path(process.testThrow)
0044
0045 process.e = cms.EndPath(process.out)