StochasticWntCellCycleModel.cpp

00001 /*
00002 
00003 Copyright (C) University of Oxford, 2005-2009
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 #include "StochasticWntCellCycleModel.hpp"
00029 
00030 
00031 StochasticWntCellCycleModel::StochasticWntCellCycleModel()
00032     : WntCellCycleModel()
00033 {
00034 }
00035 
00036       
00037 StochasticWntCellCycleModel::StochasticWntCellCycleModel(AbstractOdeSystem* pParentOdeSystem,
00038                                                          CellMutationState mutationState,
00039                                                          double birthTime,
00040                                                          double lastTime,
00041                                                          bool inSG2MPhase,
00042                                                          bool readyToDivide,
00043                                                          double divideTime,
00044                                                          double g2Duration)
00045     : WntCellCycleModel(pParentOdeSystem, mutationState, birthTime, lastTime, inSG2MPhase, readyToDivide, divideTime),
00046       mG2Duration(g2Duration)
00047 {
00048 }
00049 
00050 StochasticWntCellCycleModel::StochasticWntCellCycleModel(std::vector<double> parentProteinConcentrations,
00051                                                          CellMutationState mutationState)
00052     : WntCellCycleModel(parentProteinConcentrations, mutationState)
00053 {
00054 }
00055 
00056 
00057 void StochasticWntCellCycleModel::SetG2Duration()
00058 {
00059     CancerParameters* p_params = CancerParameters::Instance();
00060     RandomNumberGenerator* p_gen = RandomNumberGenerator::Instance();
00061 
00062     double mean = p_params->GetG2Duration();
00063     double standard_deviation = 0.9;
00064 
00065     mG2Duration = p_gen->NormalRandomDeviate(mean, standard_deviation);
00066 
00067     // Check that the normal random deviate has not returned a small or negative G2 duration
00068     if (mG2Duration < p_params->GetMinimumGapDuration())
00069     {
00070         #define COVERAGE_IGNORE
00071         mG2Duration = p_params->GetMinimumGapDuration();
00072         #undef COVERAGE_IGNORE
00073     }
00074 }
00075 
00076 
00077 void StochasticWntCellCycleModel::InitialiseDaughterCell()
00078 {
00079     SetG2Duration();
00080 }
00081 
00082 
00083 void StochasticWntCellCycleModel::Initialise()
00084 {
00085     WntCellCycleModel::Initialise();
00086     SetG2Duration();
00087 }
00088 
00089 
00090 void StochasticWntCellCycleModel::ResetForDivision()
00091 {
00092     AbstractWntOdeBasedCellCycleModel::ResetForDivision();
00093     SetG2Duration();
00094 }
00095 
00096 
00097 double StochasticWntCellCycleModel::GetG2Duration()
00098 {
00099     return mG2Duration;
00100 }
00101 
00102 
00103 AbstractCellCycleModel* StochasticWntCellCycleModel::CreateDaughterCellCycleModel()
00104 {
00105     assert(mpCell!=NULL);
00106     
00107     /*
00108      * We call a cheeky version of the constructor which makes the new cell 
00109      * cycle model the same as the old one - not a dividing copy at this time,
00110      * unless the parent cell has just divided.
00111      */
00112     return new StochasticWntCellCycleModel(mpOdeSystem,
00113                                            mpCell->GetMutationState(),
00114                                            mBirthTime,
00115                                            mLastTime,
00116                                            mFinishedRunningOdes,
00117                                            mReadyToDivide,
00118                                            mDivideTime,
00119                                            mG2Duration);
00120 }

Generated on Wed Mar 18 12:51:50 2009 for Chaste by  doxygen 1.5.5