CheckReadyToDivideAndPhaseIsUpdated.hpp

00001 /*
00002 
00003 Copyright (c) 2005-2015, University of Oxford.
00004 All rights reserved.
00005 
00006 University of Oxford means the Chancellor, Masters and Scholars of the
00007 University of Oxford, having an administrative office at Wellington
00008 Square, Oxford OX1 2JD, UK.
00009 
00010 This file is part of Chaste.
00011 
00012 Redistribution and use in source and binary forms, with or without
00013 modification, are permitted provided that the following conditions are met:
00014  * Redistributions of source code must retain the above copyright notice,
00015    this list of conditions and the following disclaimer.
00016  * Redistributions in binary form must reproduce the above copyright notice,
00017    this list of conditions and the following disclaimer in the documentation
00018    and/or other materials provided with the distribution.
00019  * Neither the name of the University of Oxford nor the names of its
00020    contributors may be used to endorse or promote products derived from this
00021    software without specific prior written permission.
00022 
00023 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
00024 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
00025 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
00026 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
00027 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
00028 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
00029 GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
00030 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
00031 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
00032 OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
00033 
00034 */
00035 
00036 #ifndef CHECKREADYTODIVIDEANDPHASEISUPDATED_HPP_
00037 #define CHECKREADYTODIVIDEANDPHASEISUPDATED_HPP_
00038 
00039 #include <cxxtest/TestSuite.h>
00040 #include <cmath>
00041 #include "AbstractCellCycleModel.hpp"
00042 #include "DifferentiatedCellProliferativeType.hpp"
00043 
00055 void CheckReadyToDivideAndPhaseIsUpdated(AbstractCellCycleModel* pModel,
00056                                          double g1Duration,
00057                                          double g2Duration=DBL_MAX)
00058 {
00059     if (g2Duration==DBL_MAX)
00060     {
00061         g2Duration = pModel->GetG2Duration();
00062     }
00063 
00064     double age = pModel->GetAge();
00065 
00066     const double G1TOL = 1e-5; // how accurate the expected G1 duration is
00067 
00068     // If the G1 duration is incorrect, print out the mismatch
00069     if ((pModel->GetCell()->GetCellProliferativeType()->IsType<DifferentiatedCellProliferativeType>()) &&
00070         (age >= pModel->GetMDuration()) &&
00071         (pModel->GetG1Duration() != DOUBLE_UNSET) &&
00072         (fabs(pModel->GetG1Duration() - g1Duration) > G1TOL))
00073     {
00074         std::cout << "G1 duration mismatch: actual = " << pModel->GetG1Duration()
00075                   << ", expected = " << g1Duration
00076                   << std::endl;
00077     }
00078 
00079     if (pModel->GetCell()->GetCellProliferativeType()->IsType<DifferentiatedCellProliferativeType>())
00080     {
00081         // If the cell is differentiated, then it must be in G0 phase and must never divide
00082         TS_ASSERT_EQUALS(pModel->ReadyToDivide(), false);
00083         TS_ASSERT_EQUALS(pModel->GetCurrentCellCyclePhase(), G_ZERO_PHASE);
00084     }
00085     else if (age < pModel->GetMDuration())
00086     {
00087         // If the cell in M phase, then it must not be ready to divide
00088         TS_ASSERT_EQUALS(pModel->ReadyToDivide(), false);
00089         TS_ASSERT_EQUALS(pModel->GetCurrentCellCyclePhase(), M_PHASE);
00090     }
00091     else if (age < pModel->GetMDuration() + g1Duration - G1TOL)
00092     {
00093         // The next cell cycle phase after M is G1; cells in G1 phase
00094         // must still not be ready to divide
00095         TS_ASSERT_EQUALS(pModel->ReadyToDivide(), false);
00096         TS_ASSERT_EQUALS(pModel->GetCurrentCellCyclePhase(), G_ONE_PHASE);
00097 
00098         // If the cell is not in G1 phase when it should be, print out the mismatch
00099         if (pModel->GetCurrentCellCyclePhase() != G_ONE_PHASE)
00100         {
00101             std::cout << "Expected G1: " << g1Duration
00102                       << "; actual: " << pModel->GetG1Duration()
00103                       << "; age = " << age
00104                       << "; G1-S transition = " << pModel->GetMDuration() + g1Duration
00105                       << std::endl;
00106         }
00107     }
00108     else if (age < pModel->GetMDuration() + g1Duration + pModel->GetSDuration() - G1TOL)
00109     {
00110         // The next cell cycle phase after G1 is S; cells in S phase
00111         // must still not be ready to divide
00112         TS_ASSERT_EQUALS(pModel->ReadyToDivide(), false);
00113         TS_ASSERT_EQUALS(pModel->GetCurrentCellCyclePhase(), S_PHASE);
00114     }
00115     else if (age < pModel->GetMDuration() + g1Duration + pModel->GetSDuration() + g2Duration  - G1TOL)
00116     {
00117         // The next cell cycle phase after S is G2; cells in G2 phase
00118         // must still not be ready to divide
00119         TS_ASSERT_EQUALS(pModel->ReadyToDivide(), false);
00120         TS_ASSERT_EQUALS(pModel->GetCurrentCellCyclePhase(), G_TWO_PHASE);
00121     }
00122     else
00123     {
00124         // Cells must be ready to divide as soon as they leave G2 phase
00125         TS_ASSERT_EQUALS(pModel->ReadyToDivide(), true);
00126     }
00127 }
00128 
00129 #endif /*CHECKREADYTODIVIDEANDPHASEISUPDATED_HPP_*/

Generated by  doxygen 1.6.2