File indexing completed on 2024-04-06 12:12:50
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process("TEST")
0004
0005 import FWCore.Framework.test.cmsExceptionsFatalOption_cff
0006 process.options = cms.untracked.PSet(
0007 wantSummary = cms.untracked.bool(True),
0008 Rethrow = FWCore.Framework.test.cmsExceptionsFatalOption_cff.Rethrow
0009 )
0010
0011 process.maxEvents = cms.untracked.PSet(
0012 input = cms.untracked.int32(20)
0013 )
0014
0015 process.source = cms.Source("EmptySource")
0016
0017 process.aux = cms.EDProducer("EventAuxiliaryHistoryProducer",
0018 historyDepth = cms.uint32(5)
0019 )
0020
0021
0022 process.out = cms.OutputModule("PoolOutputModule",
0023 fileName = cms.untracked.string('test.root')
0024 )
0025
0026
0027 process.p1 = cms.Path(process.aux)
0028
0029 process.e1 = cms.EndPath(process.out)