The Gaudi Framework
master (181af51f)
Toggle main menu visibility
Main Page
Related Pages
Topics
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Typedefs
a
b
c
d
e
f
h
i
l
m
o
p
r
s
t
u
v
w
x
Enumerations
Enumerator
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
y
Concepts
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Enumerations
a
c
d
e
f
i
l
m
n
o
p
q
r
s
t
v
Enumerator
a
b
c
d
e
f
i
j
k
l
m
n
o
p
r
s
t
u
v
w
Properties
Related Symbols
:
a
b
c
d
e
g
h
i
m
o
p
r
s
t
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Functions
_
b
c
e
f
g
h
i
l
m
o
p
r
s
t
u
z
Variables
a
b
c
d
e
g
h
i
m
o
p
r
s
t
v
x
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
w
Enumerations
Enumerator
Macros
_
a
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
▼
The Gaudi Framework
Gaudi Software Framework
►
Changelog
►
Changelog
►
Gaudi Manual
►
release.notes.v28r2p1
►
release.notes.v29r0
►
release.notes.v29r1
►
release.notes.v29r2
►
release.notes.v29r3
►
release.notes.v29r4
►
release.notes.v29r5
►
release.notes.v30r0
►
release.notes.v30r1
►
release.notes.v30r2
►
release.notes.v30r3
►
release.notes.v30r4
►
release.notes.v30r5
►
release.notes.v31r0
►
release.notes.v32r0
►
release.notes.v32r1
►
release.notes.v32r2
►
Related external libraries
►
Release Notes
Fix-Me's
Todo List
Deprecated List
►
Topics
►
Namespaces
►
Concepts
►
Classes
▼
Files
▼
File List
►
docs
►
Gaudi
►
GaudiAud
►
GaudiCommonSvc
►
GaudiConfiguration
►
GaudiCoreSvc
►
GaudiCUDA
►
GaudiExamples
►
GaudiFunctional
►
GaudiHive
►
GaudiKernel
►
GaudiMonitor
►
GaudiMP
►
GaudiPartProp
►
GaudiPluginService
►
GaudiPolicy
►
GaudiPython
►
GaudiRelease
►
GaudiRelease
►
GaudiSvc
▼
GaudiTestSuite
►
include
▼
options
►
ConditionalOutput
►
ControlFlow
►
FunctionalAlgorithms
►
MultiInput
►
OpenCL
►
ROOT_IO
►
AlgTools.py
►
AlgToolsClone.py
►
AsyncIncidents.py
►
ConfigurableUser.py
CounterAlg.py
CustomAppFromOptions.py
►
DataOnDemand.py
ExtendedProperties.py
►
FSMCallbackTest.py
►
GPython.py
►
Histograms.py
►
Histograms_with_global.py
►
Properties.py
ReEntAlg.py
►
SlimEventLoopScheduledStop.py
►
SlimExitWithFailure.py
TemplatedAlg.py
►
Timeline.py
►
Timing.py
►
ToolHandles.py
►
python
►
scripts
►
src
►
GaudiUtils
►
include
►
PartPropSvc
►
RootCnv
►
RootHistCnv
►
utils
►
File Members
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
Concepts
Loading...
Searching...
No Matches
SlimEventLoopScheduledStop.py
Go to the documentation of this file.
1
14
from
Configurables
import
(
15
ApplicationMgr,
16
AvalancheSchedulerSvc,
17
GaudiTestSuiteCommonConf,
18
HiveSlimEventLoopMgr,
19
HiveWhiteBoard,
20
StopperAlg,
21
)
22
from
Gaudi.Configuration
import
ERROR, WARNING
23
24
threads = 1
25
26
GaudiTestSuiteCommonConf()
27
28
myalg =
StopperAlg
(
29
"StopperAlg"
,
30
)
31
32
slimeventloopmgr =
HiveSlimEventLoopMgr
(
33
SchedulerName=
"AvalancheSchedulerSvc"
, OutputLevel=ERROR
34
)
35
whiteboard =
HiveWhiteBoard
(
"EventDataSvc"
)
36
37
scheduler =
AvalancheSchedulerSvc
(ThreadPoolSize=threads, OutputLevel=WARNING)
38
39
ApplicationMgr
(
40
TopAlg=[myalg],
41
EvtMax=10,
42
EvtSel=
"NONE"
,
43
EventLoop=slimeventloopmgr,
44
ExtSvc=[whiteboard],
45
)
ApplicationMgr
The Application Manager class.
Definition
ApplicationMgr.h:54
AvalancheSchedulerSvc
Definition
AvalancheSchedulerSvc.h:113
HiveSlimEventLoopMgr
Definition
HiveSlimEventLoopMgr.h:31
HiveWhiteBoard
Data service base class.
Definition
HiveWhiteBoard.cpp:128
Gaudi.Configuration
Definition
Configuration.py:1
StopperAlg
Definition
StopperAlg.cpp:14
GaudiTestSuite
options
SlimEventLoopScheduledStop.py
Generated on Wed Oct 8 2025 09:53:38 for The Gaudi Framework by
1.13.1