--- trunk/gadget/grower.h 2015/04/29 12:55:30 2 +++ trunk/gadget/grower.h 2015/04/30 17:32:47 4 @@ -93,14 +93,14 @@ * \return lgrowth, a DoubleMatrix containing the length increase */ // const DoubleMatrix& getLengthIncrease(int area) const { return *lgrowth[this->areaNum(area)]; }; - const Matrix& getLengthIncrease_(int area) const { return *_lgrowth; }; + const Matrix& getLengthIncrease(int area) const { return *lgrowth; }; /** * \brief This function will return the calculated weight increase due to growth on an area * \param area is the area that the growth is being calculated on * \return wgrowth, a DoubleMatrix containing the weight increase */ // const DoubleMatrix& getWeightIncrease(int area) const { return *wgrowth[this->areaNum(area)]; }; - const Matrix& getWeightIncrease_(int area) const { return *_wgrowth; }; + const Matrix& getWeightIncrease(int area) const { return *wgrowth; }; /** * \brief This function will return the fixed weight increase due to growth on an area * \param area is the area that the growth is being calculated on @@ -122,9 +122,8 @@ */ LengthGroupDivision* LgrpDiv; - //FIXME + //FIXME doc double * meanlength_vectorPow; - int vector_OK; /** @@ -141,30 +140,32 @@ * \note The indices for this object are [area][stock length] */ DoubleMatrix interpWeightGrowth; + //FIXME doc /** * \brief This is the DoubleMatrix used to store the calculated increase in length on the current timestep * \note The indices for this object are [area][length] */ // DoubleMatrix calcLengthGrowth; - Matrix _calcLengthGrowth; + Matrix calcLengthGrowth; + //FIXME doc /** * \brief This is the DoubleMatrix used to store the calculated increase in weight on the current timestep * \note The indices for this object are [area][length] */ // DoubleMatrix calcWeightGrowth; - Matrix _calcWeightGrowth; + Matrix calcWeightGrowth; /** * \brief This is the DoubleMatrixPtrVector used to store the calculated increase in length for each length group on the current timestep * \note The indices for this object are [area][change in length][stock length] */ // DoubleMatrixPtrVector lgrowth; - Matrix* _lgrowth; + Matrix* lgrowth; /** * \brief This is the DoubleMatrixPtrVector used to store the calculated increase in weight for each length group on the current timestep * \note The indices for this object are [area][change in length][stock length] */ // DoubleMatrixPtrVector wgrowth; - Matrix* _wgrowth; + Matrix* wgrowth; /** * \brief This is the dummy DoubleVector used during the growth calculation * \note The values of this vector are set to zero, and never used, unless the growth function depends on the feeding level of the stock (ie. growth is based on consumption of preys)