--- trunk/gadget/agebandmatrix.h 2015/04/30 12:52:16 3 +++ trunk/gadget/agebandmatrix.h 2015/04/30 17:32:47 4 @@ -123,13 +123,14 @@ * \param outfile is the ofstream that all the model information gets sent to */ void printWeights(ofstream& outfile) const; + //FIXME doc /** * \brief This function will increase the length and mean weight of the population stored in the vector, according to values calculated by the GrowthCalc calculations for the population * \param Lgrowth is the DoubleMatrix of the calculated change in length due to the growth * \param Wgrowth is the DoubleMatrix of the calculated change in mean weight due to the growth */ void Grow(const Matrix& Lgrowth, const Matrix& Wgrowth); - void Grow(const DoubleMatrix& Lgrowth, const DoubleMatrix& Wgrowth); +// void Grow(const DoubleMatrix& Lgrowth, const DoubleMatrix& Wgrowth); /** * \brief This function will increase the length and mean weight of the population stored in the vector, according to values calculated by the GrowthCalc and Maturity calculations for the population * \param Lgrowth is the DoubleMatrix of the calculated change in length due to the growth @@ -137,14 +138,14 @@ * \param Mat is the Maturity used to calculate (and store) the proportion that population that will mature * \param area is the identifier for the are used for the maturation process */ - void Grow(const DoubleMatrix& Lgrowth, const DoubleMatrix& Wgrowth, Maturity* const Mat, int area); + void Grow(const Matrix& Lgrowth, const Matrix& Wgrowth, Maturity* const Mat, int area); /** * \brief This function will increase the length of the population stored in the vector, according to values calculated by the GrowthCalc calculations for the population * \param Lgrowth is the DoubleMatrix of the calculated change in length due to the growth * \param Weight is the DoubleVector of the specified mean weight of the population * \note The mean weight of the population is fixed to values specified in the input file for the population */ - void Grow(const DoubleMatrix& Lgrowth, const DoubleVector& Weight); + void Grow(const Matrix& Lgrowth, const DoubleVector& Weight); /** * \brief This function will increase the length and mean weight of the population stored in the vector, according to values calculated by the GrowthCalc and Maturity calculations for the population * \param Lgrowth is the DoubleMatrix of the calculated change in length due to the growth @@ -153,7 +154,7 @@ * \param area is the identifier for the are used for the maturation process * \note The mean weight of the population is fixed to values specified in the input file for the population */ - void Grow(const DoubleMatrix& Lgrowth, const DoubleVector& Weight, Maturity* const Mat, int area); + void Grow(const Matrix& Lgrowth, const DoubleVector& Weight, Maturity* const Mat, int area); /** * \brief This function will add a AgeBandMatrix to the current vector * \param Addition is the AgeBandMatrix that will be added to the current vector