Mirams2010WntOdeSystem.hpp
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #ifndef MIRAMS2010WNTODESYSTEM_HPP_
00029 #define MIRAMS2010WNTODESYSTEM_HPP_
00030
00031 #include <cmath>
00032 #include <iostream>
00033
00034 #include "AbstractOdeSystem.hpp"
00035 #include "AbstractCellMutationState.hpp"
00036
00037
00038 #include "ApcOneHitCellMutationState.hpp"
00039 #include "ApcTwoHitCellMutationState.hpp"
00040 #include "BetaCateninOneHitCellMutationState.hpp"
00041 #include "LabelledCellMutationState.hpp"
00042 #include "WildTypeCellMutationState.hpp"
00043
00055 class Mirams2010WntOdeSystem : public AbstractOdeSystem
00056 {
00057 private:
00058
00064 double mA;
00066 double mB;
00068 double mC;
00070 double mD;
00072 double mE;
00074 double mF;
00075
00079 boost::shared_ptr<AbstractCellMutationState> mpMutationState;
00080
00081 public:
00082
00089 Mirams2010WntOdeSystem(double wntLevel=0.0, boost::shared_ptr<AbstractCellMutationState> pMutationState=boost::shared_ptr<AbstractCellMutationState>());
00090
00094 ~Mirams2010WntOdeSystem();
00095
00099 void Init();
00100
00109 void SetMutationState(boost::shared_ptr<AbstractCellMutationState> pMutationState);
00110
00116 boost::shared_ptr<AbstractCellMutationState> GetMutationState();
00117
00128 void EvaluateYDerivatives(double time, const std::vector<double>& rY, std::vector<double>& rDY);
00129
00130 };
00131
00132 #endif