CellsGenerator.hpp

00001 /*
00002 
00003 Copyright (C) University of Oxford, 2005-2010
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 CELLSGENERATOR_HPP_
00030 #define CELLSGENERATOR_HPP_
00031 
00032 
00033 #include <vector>
00034 #include "TissueCell.hpp"
00035 #include "WildTypeCellMutationState.hpp"
00036 #include "CellMutationStateRegistry.hpp"
00037 
00043 template<class CELL_CYCLE_MODEL, unsigned DIM>
00044 class CellsGenerator
00045 {
00046 public:
00047 
00059     void GenerateBasic(std::vector<TissueCell>& rCells,
00060                        unsigned numCells,
00061                        const std::vector<unsigned> locationIndices=std::vector<unsigned>());
00062 
00069     void GenerateGivenLocationIndices(std::vector<TissueCell>& rCells,
00070                                       const std::vector<unsigned> locationIndices);
00071 
00072 };
00073 
00074 template<class CELL_CYCLE_MODEL, unsigned DIM>
00075 void CellsGenerator<CELL_CYCLE_MODEL,DIM>::GenerateBasic(std::vector<TissueCell>& rCells,
00076                                                          unsigned numCells,
00077                                                          const std::vector<unsigned> locationIndices)
00078 {
00079     CellMutationStateRegistry::Instance()->Clear();
00080     rCells.clear();
00081     if (!locationIndices.empty())
00082     {
00083         // If location indices is given, then it needs to match the number of output cells
00084         if (numCells != locationIndices.size())
00085         {
00086             EXCEPTION("The size of the locationIndices vector must match the required number of output cells");
00087         }
00088     }
00089     rCells.reserve(numCells);
00090 
00091     // Create cells
00092     for (unsigned i=0; i<numCells; i++)
00093     {
00094         CELL_CYCLE_MODEL* p_cell_cycle_model = new CELL_CYCLE_MODEL;
00095         p_cell_cycle_model->SetDimension(DIM);
00096 
00097         boost::shared_ptr<AbstractCellMutationState> p_state(CellMutationStateRegistry::Instance()->Get<WildTypeCellMutationState>());
00098         TissueCell cell(STEM, p_state, p_cell_cycle_model);
00099 
00100         double birth_time;
00101         if (!locationIndices.empty())
00102         {
00103             birth_time = 0.0 - locationIndices[i];
00104         }
00105         else
00106         {
00107             birth_time = 0.0 - i;
00108         }
00109         cell.SetBirthTime(birth_time);
00110         rCells.push_back(cell);
00111     }
00112 }
00113 
00114 template<class CELL_CYCLE_MODEL, unsigned DIM>
00115 void CellsGenerator<CELL_CYCLE_MODEL,DIM>::GenerateGivenLocationIndices(std::vector<TissueCell>& rCells,
00116                                                                         const std::vector<unsigned> locationIndices)
00117 {
00118     assert(!locationIndices.empty());
00119 
00120     unsigned num_cells = locationIndices.size();
00121 
00122     rCells.clear();
00123     rCells.reserve(num_cells);
00124     CellMutationStateRegistry::Instance()->Clear();
00125 
00126     for (unsigned i=0; i<num_cells; i++)
00127     {
00128         CELL_CYCLE_MODEL* p_cell_cycle_model = new CELL_CYCLE_MODEL;
00129         p_cell_cycle_model->SetDimension(DIM);
00130 
00131         boost::shared_ptr<AbstractCellMutationState> p_state(CellMutationStateRegistry::Instance()->Get<WildTypeCellMutationState>());
00132 
00133         TissueCell cell(STEM, p_state, p_cell_cycle_model);
00134 
00135         double birth_time = 0.0 - locationIndices[i];
00136         cell.SetBirthTime(birth_time);
00137         rCells.push_back(cell);
00138     }
00139 }
00140 
00141 #endif /* CELLSGENERATOR_HPP_ */

Generated by  doxygen 1.6.2