Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Hadrien Benjamin Grasland
Gaudi
Commits
ca207b83
Commit
ca207b83
authored
Mar 26, 2019
by
Niklas Stefan Nolte
🔥
Committed by
Marco Clemencic
Mar 26, 2019
Browse files
sort io in hivedatabroker
parent
736b9dbd
Changes
1
Hide whitespace changes
Inline
Side-by-side
GaudiHive/src/HiveDataBroker.cpp
View file @
ca207b83
...
...
@@ -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
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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