00001 00005 #ifndef _CBNEURON_ST_H_ 00006 #define _CBNEURON_ST_H_ 00007 00008 #include "cbneuron.h" 00009 #include "spikingneuron.h" 00010 #include "ionchannel.h" 00011 00013 00015 class CbNeuronSt : public CbNeuron { 00016 00017 DO_REGISTERING 00018 00019 public: 00020 00021 CbNeuronSt(void) { STempHeight=25e-3; }; 00022 virtual ~CbNeuronSt() {}; 00023 00024 virtual double nextstate(void); 00025 00027 double STempHeight; 00028 00029 protected: 00030 00031 00032 static const double STEMP[]; 00033 00034 static const int NSTEMP; 00035 00036 int STempIdx; 00037 00038 }; 00039 00040 #endif