IDepoSource.h
Go to the documentation of this file.
1 #ifndef WIRECELL_IDEPOSOURCE
2 #define WIRECELL_IDEPOSOURCE
3 
5 #include "WireCellIface/IDepo.h"
6 
7 namespace WireCell {
8 
9  /** A depo source is a node that generates IDepo objects.
10  */
11  class IDepoSource : public ISourceNode<IDepo>
12  {
13  public:
14  typedef std::shared_ptr<IDepoSource> pointer;
15 
16  virtual ~IDepoSource() ;
17 
18  virtual std::string signature() {
19  return typeid(IDepoSource).name();
20  }
21 
22  // supply:
23  // virtual bool operator()(IDepo::pointer& depo);
24 
25  };
26 
27 
28 }
29 
30 #endif
static QCString name
Definition: declinfo.cpp:673
std::string string
Definition: nybbler.cc:12
virtual std::string signature()
Set the signature for all subclasses.
Definition: IDepoSource.h:18
std::shared_ptr< IDepoSource > pointer
Definition: IDepoSource.h:14
Definition: Main.h:22