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