//--------------------------------------------------------------------------- #ifndef cell3H #define cell3H //--------------------------------------------------------------------------- class Cell3; #include "grCell.h" class Cell3 : public GrCell { public: Cell3(pAuditory pa,int xx,int yy, float IA, float CTON, float CTOG, float APTOSTD, float CNTSTDNTSTND); virtual int isStanding(); virtual void recalculate(); virtual void initialize(); protected: float confToNeigh; float confToGlobal; float applausToStand; #pragma message countStandNeighToStand is ratio ! float countStandNeighToStand; }; #endif