Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process( "TEST2" )
0004 
0005 process.source = cms.Source("PoolSource",
0006     fileNames = cms.untracked.vstring(
0007         'file:testSubProcessUnscheduled.root'
0008     )
0009 )
0010 
0011 process.test = cms.EDAnalyzer("TestParentage",
0012                                  inputTag = cms.InputTag("final"),
0013                                  expectedAncestors = cms.vstring("two", "ten", "adder")
0014 )
0015 process.o = cms.EndPath(process.test)
0016