//--------------------------------------------------------------------------- #ifndef dynamicExhaustCellH #define dynamicExhaustCellH //--------------------------------------------------------------------------- class DynamicExhaustCell; #include "grCell.h" class DynamicExhaustCell : public GrCell { public: DynamicExhaustCell(pAuditory pa,int xx,int yy, float _IAM, float _IASD, float _CTONM, float _CTONSD, float _CTOGM, float _CTOGSD, float _APTOSTDM, float _APTOSTDSD, float _CNTSTDNTSTNDM, float _CNTSTDNTSTNDSD, float _EXHAUSTM, float _EXHAUSTSD, int _contStEx ); virtual void recalculate(); virtual void initialize(); virtual int isStanding(); protected: float IAM; float IASD; float CTONM; float CTONSD; float CTOGM; float CTOGSD; float APTOSTDM; float APTOSTDSD; float CNTSTDNTSTNDM; float CNTSTDNTSTNDSD; float EXHAUSTM; float EXHAUSTSD; int standRounds,switched,contStEx; }; #endif