CheckReadyToDivideAndPhaseIsUpdated.hpp

00001 /*
00002 
00003 Copyright (C) University of Oxford, 2005-2011
00004 
00005 University of Oxford means the Chancellor, Masters and Scholars of the
00006 University of Oxford, having an administrative office at Wellington
00007 Square, Oxford OX1 2JD, UK.
00008 
00009 This file is part of Chaste.
00010 
00011 Chaste is free software: you can redistribute it and/or modify it
00012 under the terms of the GNU Lesser General Public License as published
00013 by the Free Software Foundation, either version 2.1 of the License, or
00014 (at your option) any later version.
00015 
00016 Chaste is distributed in the hope that it will be useful, but WITHOUT
00017 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
00018 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
00019 License for more details. The offer of Chaste under the terms of the
00020 License is subject to the License being interpreted in accordance with
00021 English Law and subject to any action against the University of Oxford
00022 being under the jurisdiction of the English Courts.
00023 
00024 You should have received a copy of the GNU Lesser General Public License
00025 along with Chaste. If not, see <http://www.gnu.org/licenses/>.
00026 
00027 */
00028 
00029 #ifndef CHECKREADYTODIVIDEANDPHASEISUPDATED_HPP_
00030 #define CHECKREADYTODIVIDEANDPHASEISUPDATED_HPP_
00031 
00032 #include <cxxtest/TestSuite.h>
00033 #include <cmath>
00034 #include "AbstractCellCycleModel.hpp"
00035 
00047 void CheckReadyToDivideAndPhaseIsUpdated(AbstractCellCycleModel* pModel,
00048                                          double g1Duration,
00049                                          double g2Duration=DBL_MAX)
00050 {
00051     if (g2Duration==DBL_MAX)
00052     {
00053         g2Duration = pModel->GetG2Duration();
00054     }
00055 
00056 
00057     double age = pModel->GetAge();
00058 
00059     const double G1TOL = 1e-5; // how accurate the expected G1 duration is
00060 
00061     // If the G1 duration is incorrect, print out the mismatch
00062     if ((pModel->GetCellProliferativeType() != DIFFERENTIATED) &&
00063         (age >= pModel->GetMDuration()) &&
00064         (pModel->GetG1Duration() != DOUBLE_UNSET) &&
00065         (fabs(pModel->GetG1Duration() - g1Duration) > G1TOL))
00066     {
00067         std::cout << "G1 duration mismatch: actual = " << pModel->GetG1Duration()
00068                   << ", expected = " << g1Duration
00069                   << std::endl;
00070     }
00071 
00072     if (pModel->GetCellProliferativeType()==DIFFERENTIATED)
00073     {
00074         // If the cell is differentiated, then it must be in G0 phase and must never divide
00075         TS_ASSERT_EQUALS(pModel->ReadyToDivide(), false);
00076         TS_ASSERT_EQUALS(pModel->GetCurrentCellCyclePhase(), G_ZERO_PHASE);
00077     }
00078     else if (age < pModel->GetMDuration())
00079     {
00080         // If the cell in M phase, then it must not be ready to divide
00081         TS_ASSERT_EQUALS(pModel->ReadyToDivide(), false);
00082         TS_ASSERT_EQUALS(pModel->GetCurrentCellCyclePhase(), M_PHASE);
00083     }
00084     else if (age < pModel->GetMDuration() + g1Duration - G1TOL)
00085     {
00086         // The next cell cycle phase after M is G1; cells in G1 phase
00087         // must still not be ready to divide
00088         TS_ASSERT_EQUALS(pModel->ReadyToDivide(), false);
00089         TS_ASSERT_EQUALS(pModel->GetCurrentCellCyclePhase(), G_ONE_PHASE);
00090 
00091         // If the cell is not in G1 phase when it should be, print out the mismatch
00092         if (pModel->GetCurrentCellCyclePhase() != G_ONE_PHASE)
00093         {
00094             std::cout << "Expected G1: " << g1Duration
00095                       << "; actual: " << pModel->GetG1Duration()
00096                       << "; age = " << age
00097                       << "; G1-S transition = " << pModel->GetMDuration() + g1Duration
00098                       << std::endl;
00099         }
00100     }
00101     else if (age < pModel->GetMDuration() + g1Duration + pModel->GetSDuration() - G1TOL)
00102     {
00103         // The next cell cycle phase after G1 is S; cells in S phase
00104         // must still not be ready to divide
00105         TS_ASSERT_EQUALS(pModel->ReadyToDivide(), false);
00106         TS_ASSERT_EQUALS(pModel->GetCurrentCellCyclePhase(), S_PHASE);
00107     }
00108     else if (age < pModel->GetMDuration() + g1Duration + pModel->GetSDuration() + g2Duration  - G1TOL)
00109     {
00110         // The next cell cycle phase after S is G2; cells in G2 phase
00111         // must still not be ready to divide
00112         TS_ASSERT_EQUALS(pModel->ReadyToDivide(), false);
00113         TS_ASSERT_EQUALS(pModel->GetCurrentCellCyclePhase(), G_TWO_PHASE);
00114     }
00115     else
00116     {
00117         // Cells must be ready to divide as soon as they leave G2 phase
00118         TS_ASSERT_EQUALS(pModel->ReadyToDivide(), true);
00119     }
00120 }
00121 
00122 #endif /*CHECKREADYTODIVIDEANDPHASEISUPDATED_HPP_*/
Generated on Thu Dec 22 13:00:04 2011 for Chaste by  doxygen 1.6.3