|
|||||||||||
Main Page | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members | Related Pages
countspikefilter.hGo to the documentation of this file.00001 00005 #ifndef _COUNTSPIKEFILTER_H_ 00006 #define _COUNTSPIKEFILTER_H_ 00007 00008 #include "spikefilter.h" 00009 00010 using namespace std; 00011 00013 class CountSpikeFilter : public SpikeFilter { 00014 00015 DO_REGISTERING 00016 00017 public: 00020 CountSpikeFilter(double time_window = 1000.0); 00021 00022 ~CountSpikeFilter(void) {}; 00023 00025 int updateInternal(); 00026 00028 double time_window; 00029 00030 protected: 00034 double processSpike(int channel, double *target); 00035 00036 00037 }; 00038 00039 #endif | |||||||||||
(C) 2003, Thomas Natschläger | last modified 07/10/2006 |