PetaVision  Alpha
L2ConnProbe.hpp
1 /*
2  * L2ConnProbe.hpp
3  *
4  * Created on: July 24th, 2015
5  * Author: Kendall Stewart
6  */
7 
8 #ifndef L2CONNPROBE_HPP_
9 #define L2CONNPROBE_HPP_
10 
11 #include "KernelProbe.hpp"
12 
13 namespace PV {
14 
15 class L2ConnProbe : public KernelProbe {
16 
17  // Methods
18  public:
19  L2ConnProbe(const char *probename, HyPerCol *hc);
20  virtual ~L2ConnProbe();
21  virtual Response::Status outputState(double timef) override;
22 
23  protected:
24  L2ConnProbe();
25 
26 }; // end of class L2ConnProbe block
27 
28 } // end of namespace PV block
29 
30 #endif /* L2CONNPROBE_HPP_ */
virtual Response::Status outputState(double timef) override
Definition: L2ConnProbe.cpp:18