File indexing completed on 2024-04-06 12:12:42
0001
0002
0003
0004
0005
0006 import FWCore.ParameterSet.Config as cms
0007
0008 process = cms.Process("TEST")
0009
0010 process.load("FWCore.MessageService.MessageLogger_cfi")
0011 process.MessageLogger.cerr.FwkReport.reportEvery = 1000
0012
0013 import FWCore.Framework.test.cmsExceptionsFatalOption_cff
0014 process.options = cms.untracked.PSet(
0015 Rethrow = FWCore.Framework.test.cmsExceptionsFatalOption_cff.Rethrow
0016 )
0017
0018 process.source = cms.Source("PoolSource",
0019 fileNames = cms.untracked.vstring('file:testSeriesOfProcessesTEST.root'),
0020 )
0021
0022
0023
0024
0025 process.a = cms.EDAnalyzer("TestFindProduct",
0026 inputTags = cms.untracked.VInputTag()
0027 )
0028
0029 process.test1 = cms.Path(process.a)