The Gaudi Framework  v29r0 (ff2e7097)
DHHVisitor Class Reference

#include <GaudiKernel/DataHandleHolderVisitor.h>

Inheritance diagram for DHHVisitor:
Collaboration diagram for DHHVisitor:

Public Member Functions

 DHHVisitor (DataObjIDColl &ido, DataObjIDColl &odo)
 
const DataObjIDCollignoredInpKeys () const
 
const DataObjIDCollignoredOutKeys () const
 
void visit (const IDataHandleHolder *visitee) override
 
- Public Member Functions inherited from IDataHandleVisitor
virtual ~IDataHandleVisitor ()=default
 

Private Attributes

DataObjIDCollm_ido
 
DataObjIDCollm_odo
 
DataObjIDColl m_ign_i
 
DataObjIDColl m_ign_o
 

Detailed Description

Definition at line 8 of file DataHandleHolderVisitor.h.

Constructor & Destructor Documentation

DHHVisitor::DHHVisitor ( DataObjIDColl ido,
DataObjIDColl odo 
)

Definition at line 13 of file DataHandleHolderVisitor.cpp.

13 : m_ido( ido ), m_odo( odo ) {}
DataObjIDColl & m_ido
DataObjIDColl & m_odo

Member Function Documentation

const DataObjIDColl& DHHVisitor::ignoredInpKeys ( ) const
inline

Definition at line 13 of file DataHandleHolderVisitor.h.

13 { return m_ign_i; }
DataObjIDColl m_ign_i
const DataObjIDColl& DHHVisitor::ignoredOutKeys ( ) const
inline

Definition at line 14 of file DataHandleHolderVisitor.h.

14 { return m_ign_o; }
DataObjIDColl m_ign_o
void DHHVisitor::visit ( const IDataHandleHolder visitee)
overridevirtual

Implements IDataHandleVisitor.

Definition at line 15 of file DataHandleHolderVisitor.cpp.

16 {
17  if ( !v ) {
18  return;
19  }
20 
21  // Loop over inputs and outputs of handles, extra dependiencies and objects to
22  // collect all of them.
23  // Handles and extra dependencies are those of a specific algorith or tool, while
24  // the collection of data objects also contains those of the tree of tools and
25  // algorithms below it.
26 
27  // Loop over input handles and output handles and store those with with non-empty keys
28  // in the container of input objects passed to us and the others in a container of those
29  // we ignore for debug purposes. To avoid multiple for loops, make some tuples and loop
30  // over those.
31  for ( auto& hs : {make_tuple( v->inputHandles(), std::ref( m_ido ), std::ref( m_ign_i ) ),
32  make_tuple( v->outputHandles(), std::ref( m_odo ), std::ref( m_ign_o ) )} ) {
33  for ( const auto& h : std::get<0>( hs ) ) {
34  if ( !h->objKey().empty() ) {
35  std::get<1>( hs ).emplace( h->fullKey() );
36  } else {
37  std::get<2>( hs ).emplace( h->fullKey() );
38  }
39  }
40  }
41 
42  // The containers of handles are a different type than the on of input deps and input
43  // objects, so we need another loop here.
44  // NOTE: perhaps a view from range v3 can be used to also avoid this second loop.
45  for ( auto& hs : {make_tuple( v->extraInputDeps(), std::ref( m_ido ), std::ref( m_ign_i ) ),
46  make_tuple( v->extraOutputDeps(), std::ref( m_odo ), std::ref( m_ign_o ) ),
47  make_tuple( v->inputDataObjs(), std::ref( m_ido ), std::ref( m_ign_i ) ),
48  make_tuple( v->outputDataObjs(), std::ref( m_odo ), std::ref( m_ign_o ) )} ) {
49  for ( const auto& h : std::get<0>( hs ) ) {
50  if ( !h.key().empty() ) {
51  std::get<1>( hs ).emplace( h );
52  } else {
53  std::get<2>( hs ).emplace( h );
54  }
55  }
56  }
57 }
DataObjIDColl m_ign_o
T make_tuple(T...args)
DataObjIDColl m_ign_i
DataObjIDColl & m_ido
T ref(T...args)
DataObjIDColl & m_odo

Member Data Documentation

DataObjIDColl& DHHVisitor::m_ido
private

Definition at line 19 of file DataHandleHolderVisitor.h.

DataObjIDColl DHHVisitor::m_ign_i
private

Definition at line 20 of file DataHandleHolderVisitor.h.

DataObjIDColl DHHVisitor::m_ign_o
private

Definition at line 20 of file DataHandleHolderVisitor.h.

DataObjIDColl & DHHVisitor::m_odo
private

Definition at line 19 of file DataHandleHolderVisitor.h.


The documentation for this class was generated from the following files: