DumpDepos.h
Go to the documentation of this file.
1 #ifndef WIRECELL_DUMPDEPOS
2 #define WIRECELL_DUMPDEPOS
3 
5 
6 namespace WireCell {
7 
8  class DumpDepos : public IDepoSink {
9  public:
10  DumpDepos();
11  virtual ~DumpDepos();
12  virtual bool operator()(const IDepo::pointer& depo);
13  private:
14  int m_nin;
15 
16  };
17 
18 }
19 
20 #endif
std::shared_ptr< const IDepo > pointer
Definition: IData.h:19
virtual ~DumpDepos()
Definition: DumpDepos.cxx:14
virtual bool operator()(const IDepo::pointer &depo)
The calling signature:
Definition: DumpDepos.cxx:16
Definition: Main.h:22