Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 11:03:01

0001 import FWCore.ParameterSet.Config as cms
0002 process = cms.Process("TEST")
0003 
0004 process.source = cms.Source("PoolSource",
0005                             fileNames = cms.untracked.vstring("file:ref_merge.root")
0006                             )
0007 
0008 process.tester = cms.EDAnalyzer("OtherThingAnalyzer",
0009                                 other = cms.untracked.InputTag("d","testUserTag"))
0010 
0011 process.e = cms.EndPath(process.tester)
0012