File indexing completed on 2023-03-17 11:03:06
0001
0002
0003
0004
0005
0006
0007
0008
0009 import FWCore.ParameterSet.Config as cms
0010
0011 process = cms.Process("PROD3TEST")
0012
0013 process.maxLuminosityBlocks = cms.untracked.PSet(
0014 input = cms.untracked.int32(3)
0015 )
0016
0017 process.load("FWCore.MessageService.MessageLogger_cfi")
0018 process.MessageLogger.cerr.FwkReport.reportEvery = 1000
0019
0020 import FWCore.Framework.test.cmsExceptionsFatalOption_cff
0021 process.options = cms.untracked.PSet(
0022
0023 Rethrow = FWCore.Framework.test.cmsExceptionsFatalOption_cff.Rethrow
0024 )
0025
0026 process.source = cms.Source("PoolSource",
0027 fileNames = cms.untracked.vstring('file:testSeriesOfProcessesPROD2TEST.root'),
0028 )
0029
0030
0031
0032
0033
0034 process.a = cms.EDAnalyzer("TestFindProduct",
0035 inputTags = cms.untracked.VInputTag( cms.InputTag("fakeRaw"),
0036 cms.InputTag("fakeHLTDebug") ),
0037
0038
0039
0040
0041
0042
0043
0044
0045
0046 expectedSum = cms.untracked.int32(15300)
0047 )
0048
0049 process.test1 = cms.Path(process.a)