File indexing completed on 2024-04-06 12:19:08
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process("TESTANALYSIS")
0004 process.load("FWCore.Framework.test.cmsExceptionsFatal_cff")
0005
0006 process.maxEvents = cms.untracked.PSet(
0007 input = cms.untracked.int32(-1)
0008 )
0009
0010 process.Analysis = cms.EDAnalyzer("OtherThingAnalyzer")
0011
0012 process.source = cms.Source("PoolSource",
0013 setRunNumber = cms.untracked.uint32(621),
0014 fileNames = cms.untracked.vstring('file:step1.root')
0015 )
0016
0017 process.OtherThing = cms.EDProducer("OtherThingProducer",
0018 thingTag = cms.InputTag("AltThing")
0019 )
0020
0021 process.p = cms.Path(process.OtherThing*process.Analysis)
0022
0023