Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
atlas
athena
Merge requests
!23872
Fix ThinningSvc to retrieve OutputStream from the correct sequence.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix ThinningSvc to retrieve OutputStream from the correct sequence.
gemmeren/athena:Athena_ThiningSvc_StreamFix
into
master
Overview
3
Commits
1
Pipelines
1
Changes
1
Merged
Peter Van Gemmeren
requested to merge
gemmeren/athena:Athena_ThiningSvc_StreamFix
into
master
5 years ago
Overview
3
Commits
1
Pipelines
1
Changes
1
Expand
This may help with
ATLASRECTS-4961
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
503d13a6
1 commit,
5 years ago
1 file
+
8
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Control/AthenaServices/python/Configurables.py
+
8
−
1
Options
@@ -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
"
):
Loading