File indexing completed on 2023-03-17 11:03:00
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process("TEST")
0004
0005 process.load("FWCore.Framework.test.cmsExceptionsFatal_cff")
0006
0007 process.maxEvents = cms.untracked.PSet(
0008 input = cms.untracked.int32(2)
0009 )
0010
0011 process.source = cms.Source("ThingSource"
0012 )
0013
0014 process.thing = cms.EDAlias(source = cms.VPSet( cms.PSet( type = cms.string("edmtestThings")) ) )
0015
0016
0017 process.OtherThing = cms.EDProducer("OtherThingProducer",
0018 thingTag = cms.InputTag('thing')
0019 )
0020
0021 process.Analysis = cms.EDAnalyzer("OtherThingAnalyzer")
0022
0023 process.p = cms.Path(process.OtherThing * process.Analysis)