File indexing completed on 2023-10-25 09:53:44
0001
0002
0003
0004
0005 import FWCore.ParameterSet.Config as cms
0006
0007 process = cms.Process("TESTRECO")
0008 process.load("FWCore.Framework.test.cmsExceptionsFatal_cff")
0009
0010 process.maxEvents = cms.untracked.PSet(
0011 input = cms.untracked.int32(-1)
0012 )
0013 process.Analysis = cms.EDAnalyzer("OtherThingAnalyzer",
0014 thingWasDropped = cms.untracked.bool(True)
0015 )
0016
0017 process.source = cms.Source("PoolSource",
0018 setRunNumber = cms.untracked.uint32(621),
0019 fileNames = cms.untracked.vstring('file:PoolInputDropTest.root')
0020 )
0021
0022 process.p = cms.Path(process.Analysis)
0023
0024