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