#include <IDataFlowGraph.h>
Public Member Functions | |
virtual | ~IDataFlowGraph () |
virtual bool | connect (INode::pointer tail, INode::pointer head, size_t tail_port=0, size_t head_port=0)=0 |
virtual bool | run ()=0 |
Run the graph, return false on error. More... | |
Public Member Functions inherited from WireCell::IComponent< IDataFlowGraph > | |
virtual | ~IComponent () |
Public Member Functions inherited from WireCell::Interface | |
virtual | ~Interface () |
Additional Inherited Members | |
Public Types inherited from WireCell::IComponent< IDataFlowGraph > | |
typedef std::shared_ptr< IDataFlowGraph > | pointer |
Access subclass facet by pointer. More... | |
typedef std::vector< pointer > | vector |
Vector of shared pointers. More... | |
Public Types inherited from WireCell::Interface | |
typedef std::shared_ptr< Interface > | pointer |
Interface to a data flow processing graph.
See also WireCell::IConnector and WireCell::IConnectorT.
Definition at line 13 of file IDataFlowGraph.h.
|
virtual |
Definition at line 113 of file IfaceDesctructors.cxx.
|
pure virtual |
Connect tail and head nodes so data runs from given tail port number to given head port number Return false on error.
Implemented in WireCellTbb::DataFlowGraph.
|
pure virtual |
Run the graph, return false on error.
Implemented in WireCellTbb::DataFlowGraph.