The Gaudi Framework  master (181af51f)
Loading...
Searching...
No Matches
SlimExitWithFailure.py
Go to the documentation of this file.
14from Configurables import ApplicationMgr, AvalancheSchedulerSvc
15from Configurables import Gaudi__TestSuite__IntDataConsumer as IntDataConsumer
16from Configurables import GaudiTestSuiteCommonConf, HiveSlimEventLoopMgr, HiveWhiteBoard
17from Gaudi.Configuration import ERROR, WARNING
18
19threads = 1
20
21GaudiTestSuiteCommonConf()
22
23slimeventloopmgr = HiveSlimEventLoopMgr(
24 SchedulerName="AvalancheSchedulerSvc", OutputLevel=ERROR
25)
26whiteboard = HiveWhiteBoard("EventDataSvc")
27
28scheduler = AvalancheSchedulerSvc(ThreadPoolSize=threads, OutputLevel=WARNING)
29
31 TopAlg=[IntDataConsumer()],
32 EvtMax=10,
33 EvtSel="NONE",
34 EventLoop=slimeventloopmgr,
35 ExtSvc=[whiteboard],
36)
The Application Manager class.
Data service base class.