DumpFrames.h
Go to the documentation of this file.
1 #ifndef WIRECELLGEN_DUMPFRAMES
2 #define WIRECELLGEN_DUMPFRAMES
3 
5 #include "WireCellUtil/Logging.h"
6 
7 namespace WireCell {
8  namespace Gen {
9 
10  class DumpFrames : public IFrameSink {
11  public:
12  DumpFrames();
13  virtual ~DumpFrames();
14 
15  /// Do something thrilling with a frame.
16  virtual bool operator()(const IFrame::pointer& frame);
17  private:
19 
20  };
21  }
22 }
23 
24 
25 #endif
std::shared_ptr< const IFrame > pointer
Definition: IData.h:19
virtual bool operator()(const IFrame::pointer &frame)
Do something thrilling with a frame.
Definition: DumpFrames.cxx:20
std::shared_ptr< spdlog::logger > logptr_t
Definition: Logging.h:24
Definition: Main.h:22