IScalarFieldSink.h
Go to the documentation of this file.
1 #ifndef WIRECELL_ISCALARFIELDSINK
2 #define WIRECELL_ISCALARFIELDSINK
3 
5 #include "WireCellUtil/Point.h"
6 
7 
8 namespace WireCell {
9 
10  /** Base class for a sink of cells. */
11  class IScalarFieldSink : public ISinkNode< ScalarField >
12  {
13  public:
14  virtual ~IScalarFieldSink() ;
15 
16  virtual std::string signature() {
17  return typeid(IScalarFieldSink).name();
18  }
19  /// supply:
20  /// virtual bool operator()(const std::shared_ptr<ScalarField>& field);
21 
22  };
23 
24 }
25 
26 
27 #endif
28 
static QCString name
Definition: declinfo.cpp:673
std::string string
Definition: nybbler.cc:12
Definition: Main.h:22
virtual std::string signature()