Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Marcin Piotr Wandas
athena
Commits
503d13a6
Commit
503d13a6
authored
5 years ago
by
Peter van Gemmeren
Browse files
Options
Downloads
Patches
Plain Diff
Fix ThinningSvc to retrieve OutputStream from the correct sequence.
parent
7d9f3dab
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Control/AthenaServices/python/Configurables.py
+8
-1
8 additions, 1 deletion
Control/AthenaServices/python/Configurables.py
with
8 additions
and
1 deletion
Control/AthenaServices/python/Configurables.py
+
8
−
1
View file @
503d13a6
...
...
@@ -37,7 +37,7 @@ class ThinningSvc( _ThinningSvc ):
if
not
isinstance
(
handle
,
ThinningSvc
):
return
from
AthenaCommon.AlgSequence
import
AlgSequence
from
AthenaCommon.AlgSequence
import
AlgSequence
,
AthSequencer
## get a handle on the ToolSvc
from
AthenaCommon.AppMgr
import
ToolSvc
as
toolSvc
from
AthenaCommon.AppMgr
import
ServiceMgr
as
svcMgr
...
...
@@ -142,6 +142,13 @@ class ThinningSvc( _ThinningSvc ):
_doScheduleTool
(
o
,
streams
)):
outstreams
.
append
(
o
)
pass
## then loop over OutputStream sequence
for
o
in
AthSequencer
(
"
AthOutSeq
"
):
if
(
isinstance
(
o
,
AthenaOutputStream
)
and
hasattr
(
o
,
'
HelperTools
'
)
and
_doScheduleTool
(
o
,
streams
)):
outstreams
.
append
(
o
)
pass
## then loop over OutStream sequence
if
AlgSequence
.
configurables
.
has_key
(
'
Streams
'
):
for
o
in
AlgSequence
(
"
Streams
"
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment