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