File indexing completed on 2024-04-06 12:13:08
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process("TEST")
0004
0005 process.source = cms.Source("EmptySource")
0006
0007 process.maxEvents = cms.untracked.PSet(input = cms.untracked.int32(-1))
0008
0009 process.stuck = cms.EDAnalyzer("StuckAnalyzer")
0010 process.p = cms.Path(process.stuck)
0011
0012 process.add_(cms.Service("ZombieKillerService",
0013 secondsBetweenChecks = cms.untracked.uint32(10),
0014 numberOfAllowedFailedChecksInARow = cms.untracked.uint32(2)))