FrameSplitter.h
Go to the documentation of this file.
1 #ifndef WIRECELLSIGPROC_FRAMESPLITTER
2 #define WIRECELLSIGPROC_FRAMESPLITTER
3 
5 
6 namespace WireCell {
7  namespace SigProc {
8 
9  // fixme/note: this class is generic and nothing to do with
10  // sigproc per se. There are a few such frame related nodes
11  // also in gen. They should be moved into some neutral package.
13 
14  public:
15 
16  FrameSplitter();
17  virtual ~FrameSplitter();
18 
19  virtual bool operator()(const input_pointer& in, output_tuple_type& out);
20 
21  };
22  }
23 }
24 
25 #endif
port_helper_type::template WrappedConst< std::shared_ptr >::type output_tuple_type
Definition: ISplitNode.h:46
virtual bool operator()(const input_pointer &in, output_tuple_type &out)
Definition: Main.h:22