Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Hadrien Benjamin Grasland
Gaudi
Commits
91808eea
Commit
91808eea
authored
Mar 26, 2019
by
Marco Clemencic
Browse files
Sort data dependencies in HiveDataBroker debug printout (!868)
parents
736b9dbd
ca207b83
Pipeline
#779933
passed with stages
in 33 minutes and 55 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
GaudiHive/src/HiveDataBroker.cpp
View file @
91808eea
...
...
@@ -174,8 +174,12 @@ HiveDataBrokerSvc::mapProducers( std::vector<AlgEntry>& algorithms ) const {
debug
()
<<
"Data Dependencies for Algorithms:"
;
for
(
const
auto
&
entry
:
m_algorithms
)
{
debug
()
<<
"
\n
"
<<
entry
.
alg
->
name
()
<<
" :"
;
for
(
const
auto
&
id
:
entry
.
alg
->
inputDataObjs
()
)
{
debug
()
<<
"
\n
o INPUT "
<<
id
.
key
();
}
for
(
const
auto
&
id
:
entry
.
alg
->
outputDataObjs
()
)
{
debug
()
<<
"
\n
o OUTPUT "
<<
id
.
key
();
}
for
(
const
auto
*
id
:
sortedDataObjIDColl
(
entry
.
alg
->
inputDataObjs
()
)
)
{
debug
()
<<
"
\n
o INPUT "
<<
id
->
key
();
}
for
(
const
auto
*
id
:
sortedDataObjIDColl
(
entry
.
alg
->
outputDataObjs
()
)
)
{
debug
()
<<
"
\n
o OUTPUT "
<<
id
->
key
();
}
}
debug
()
<<
endmsg
;
}
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment