Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:12:39

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process("Analyze")
0004 
0005 process.source = cms.Source("PoolSource", fileNames = cms.untracked.vstring("file:ref_alias_drop_original.root"))
0006 
0007 process.otherThing3 = cms.EDProducer("OtherThingProducer",
0008                                      thingTag=cms.InputTag("thingAlias"))
0009 
0010 process.comparerA = cms.EDAnalyzer("OtherThingRefComparer", 
0011                                   first = cms.untracked.InputTag("otherThing1:testUserTag"),
0012                                   second = cms.untracked.InputTag("otherThing2:testUserTag")
0013                                   )
0014 
0015 process.comparerB = cms.EDAnalyzer("OtherThingRefComparer", 
0016                                   first = cms.untracked.InputTag("otherThing1:testUserTag"),
0017                                   second = cms.untracked.InputTag("otherThing3:testUserTag")
0018                                  )
0019 
0020 process.comparerC = cms.EDAnalyzer("OtherThingRefComparer", 
0021                                    first = cms.untracked.InputTag("otherThing2:testUserTag"),
0022                                    second = cms.untracked.InputTag("otherThing3:testUserTag")
0023                                   )
0024 
0025 process.p = cms.Path(process.otherThing3+process.comparerA+process.comparerB+process.comparerC)
0026