#include <ISliceFanout.h>
Public Member Functions | |
virtual | ~ISliceFanout () |
virtual std::string | signature () |
virtual std::vector< std::string > | output_types ()=0 |
Public Member Functions inherited from WireCell::IFanoutNode< ISlice, ISlice, 0 > | |
virtual | ~IFanoutNode () |
virtual bool | operator() (const boost::any &anyin, any_vector &anyv) |
The calling signature: More... | |
virtual bool | operator() (const input_pointer &in, output_vector &outv)=0 |
virtual std::vector< std::string > | input_types () |
Public Member Functions inherited from WireCell::IFanoutNodeBase | |
virtual | ~IFanoutNodeBase () |
virtual NodeCategory | category () |
Return the behavior category type. More... | |
virtual int | concurrency () |
Fanout nodes can usually do their thing stateless. More... | |
Public Member Functions inherited from WireCell::INode | |
virtual | ~INode () |
virtual void | reset () |
Public Member Functions inherited from WireCell::IComponent< INode > | |
virtual | ~IComponent () |
Public Member Functions inherited from WireCell::Interface | |
virtual | ~Interface () |
Additional Inherited Members | |
Public Types inherited from WireCell::IFanoutNode< ISlice, ISlice, 0 > | |
typedef ISlice | input_type |
typedef ISlice | output_type |
typedef std::shared_ptr< const ISlice > | input_pointer |
typedef std::shared_ptr< const ISlice > | output_pointer |
typedef std::vector< output_pointer > | output_vector |
Public Types inherited from WireCell::IFanoutNodeBase | |
typedef std::shared_ptr< IFanoutNodeBase > | pointer |
typedef std::vector< boost::any > | any_vector |
Public Types inherited from WireCell::INode | |
enum | NodeCategory { unknown, sourceNode, sinkNode, functionNode, queuedoutNode, joinNode, splitNode, faninNode, fanoutNode, multioutNode, hydraNode } |
Public Types inherited from WireCell::IComponent< INode > | |
typedef std::shared_ptr< INode > | 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 |
A slice fan-out component takes 1 input slice and produces one slice on each of its output ports. What each of those N slices are depends on implementation.
Definition at line 12 of file ISliceFanout.h.
|
virtual |
Definition at line 157 of file IfaceDesctructors.cxx.
|
pure virtual |
Reimplemented from WireCell::IFanoutNode< ISlice, ISlice, 0 >.
Implemented in WireCell::Img::SliceFanout.
|
inlinevirtual |
The signature is string unique to all classes that implement a particular calling signature. These should be defined in lower level interfaces such as a mythical IMyFooToBarConverter.
Implements WireCell::INode.
Definition at line 17 of file ISliceFanout.h.