1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import FWCore.ParameterSet.Config as cms
process = cms.Process("TEST")
process.load("FWCore.Framework.test.cmsExceptionsFatal_cff")
process.maxEvents = cms.untracked.PSet(
input = cms.untracked.int32(2)
)
process.source = cms.Source("ThingSource"
)
process.OtherThing = cms.EDProducer("OtherThingProducer",
thingTag = cms.InputTag('source')
)
process.Analysis = cms.EDAnalyzer("OtherThingAnalyzer")
process.p = cms.Path(process.OtherThing * process.Analysis)
|