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

#include <IFunctionNode.h>

Inheritance diagram for WireCell::IFunctionNodeBase:
WireCell::INode WireCell::IComponent< INode > WireCell::Interface WireCell::IFunctionNode< ICluster, ICluster > WireCell::IFunctionNode< ICluster, IFrame > WireCell::IFunctionNode< IDepo, IDepo > WireCell::IFunctionNode< IDepoSet, IFrame > WireCell::IFunctionNode< IFrame, IFrame > WireCell::IFunctionNode< IFrame, ISliceFrame > WireCell::IFunctionNode< ISlice, IBlobSet > WireCell::IFunctionNode< ISlice, IStripeSet > WireCell::IFunctionNode< IWire::vector, IWireSummary > WireCell::IFunctionNode< IWireParameters, IWire::vector > WireCell::IFunctionNode< InputType, OutputType >

Public Types

typedef std::shared_ptr< IFunctionNodeBasepointer
 
- 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 ~IFunctionNodeBase ()
 
virtual bool operator() (const boost::any &anyin, boost::any &anyout)=0
 The calling signature: More...
 
virtual NodeCategory category ()
 Return the behavior category type. More...
 
virtual int concurrency ()
 By default assume all subclasses are 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 acts as a simple function.

Definition at line 13 of file IFunctionNode.h.

Member Typedef Documentation

Definition at line 16 of file IFunctionNode.h.

Constructor & Destructor Documentation

IFunctionNodeBase::~IFunctionNodeBase ( )
virtual

Definition at line 143 of file IfaceDesctructors.cxx.

143 {}

Member Function Documentation

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

Return the behavior category type.

Implements WireCell::INode.

Definition at line 23 of file IFunctionNode.h.

23  {
24  return functionNode;
25  }
virtual int WireCell::IFunctionNodeBase::concurrency ( )
inlinevirtual

By default assume all subclasses are stateless.

Reimplemented from WireCell::INode.

Definition at line 28 of file IFunctionNode.h.

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

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