File indexing completed on 2023-03-17 11:03:01
0001
0002
0003
0004 import FWCore.ParameterSet.Config as cms
0005
0006 process = cms.Process("TEST")
0007
0008 process.load("FWCore.Framework.test.cmsExceptionsFatal_cff")
0009
0010 process.maxEvents = cms.untracked.PSet(
0011 input = cms.untracked.int32(1)
0012 )
0013
0014 process.source = cms.Source("EmptySource")
0015
0016
0017 from FWCore.Integration.testProducerWithPsetDesc_cfi import *
0018
0019 process.testProducerWithPsetDesc = testProducerWithPsetDesc
0020 process.testProducerWithPsetDesc.plugin1.type = cms.string("edmtestAnotherOneMaker")
0021
0022 process.p1 = cms.Path(process.testProducerWithPsetDesc)
0023
0024
0025 process.load("FWCore.Integration.pluginUsingProducer_cfi")
0026 process.p2 = cms.Path(process.pluginUsingProducer)