Public Types | Public Member Functions | List of all members
WireCell::IFanoutNodeBase Class Referenceabstract

#include <IFanoutNode.h>

Inheritance diagram for WireCell::IFanoutNodeBase:
WireCell::INode WireCell::IComponent< INode > WireCell::Interface WireCell::IFanoutNode< IBlobSet::vector, IBlobSet, 0 > WireCell::IFanoutNode< IDepo, IDepo, 0 > WireCell::IFanoutNode< IDepoSet, IDepoSet, 0 > WireCell::IFanoutNode< IFrame, IFrame, 0 > WireCell::IFanoutNode< ISlice, ISlice, 0 > WireCell::IFanoutNode< InputType, OutputType, FanoutMultiplicity > WireCell::IBlobSetFanout WireCell::IDepoFanout WireCell::IDepoSetFanout WireCell::IFrameFanout WireCell::ISliceFanout WireCell::Gen::DepoFanout WireCell::Gen::DepoSetFanout WireCell::Gen::FrameFanout WireCell::SigProc::ChannelSplitter WireCell::Img::SliceFanout

Public Types

typedef std::shared_ptr< IFanoutNodeBasepointer
 
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< INodepointer
 Access subclass facet by pointer. More...
 
typedef std::vector< pointervector
 Vector of shared pointers. More...
 
- Public Types inherited from WireCell::Interface
typedef std::shared_ptr< Interfacepointer
 

Public Member Functions

virtual ~IFanoutNodeBase ()
 
virtual bool operator() (const boost::any &anyin, any_vector &anyout)=0
 The calling signature: More...
 
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 std::string signature ()=0
 
virtual std::vector< std::stringinput_types ()
 
virtual std::vector< std::stringoutput_types ()
 
virtual void reset ()
 
- Public Member Functions inherited from WireCell::IComponent< INode >
virtual ~IComponent ()
 
- Public Member Functions inherited from WireCell::Interface
virtual ~Interface ()
 

Detailed Description

A node which accepts one object of the given InputType and produces N of the given OutputType.

Definition at line 14 of file IFanoutNode.h.

Member Typedef Documentation

Definition at line 21 of file IFanoutNode.h.

Definition at line 17 of file IFanoutNode.h.

Constructor & Destructor Documentation

IFanoutNodeBase::~IFanoutNodeBase ( )
virtual

Definition at line 130 of file IfaceDesctructors.cxx.

130 {}

Member Function Documentation

virtual NodeCategory WireCell::IFanoutNodeBase::category ( )
inlinevirtual

Return the behavior category type.

Implements WireCell::INode.

Definition at line 26 of file IFanoutNode.h.

26  {
27  return fanoutNode;
28  }
virtual int WireCell::IFanoutNodeBase::concurrency ( )
inlinevirtual

Fanout nodes can usually do their thing stateless.

Reimplemented from WireCell::INode.

Definition at line 31 of file IFanoutNode.h.

31 { return 0; }
virtual bool WireCell::IFanoutNodeBase::operator() ( const boost::any &  anyin,
any_vector anyout 
)
pure virtual

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