Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-19 02:16:42

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:refconsistency_merge.root")
0006 )
0007 
0008 process.tester = cms.EDAnalyzer("OtherThingAnalyzer",
0009     other = cms.untracked.InputTag("otherThing","testUserTag")
0010 )
0011 
0012 process.e = cms.EndPath(process.tester)