#include <CellsGenerator.hpp>
Public Member Functions | |
void | GenerateBasic (std::vector< CellPtr > &rCells, unsigned numCells, const std::vector< unsigned > locationIndices=std::vector< unsigned >(), CellProliferativeType cellProliferativeType=STEM) |
void | GenerateBasicRandom (std::vector< CellPtr > &rCells, unsigned numCells, CellProliferativeType cellProliferativeType=STEM) |
void | GenerateGivenLocationIndices (std::vector< CellPtr > &rCells, const std::vector< unsigned > locationIndices, CellProliferativeType cellProliferativeType=STEM) |
A helper class for generating a vector of cells for a given mesh.
It is templated over types of cell-cycle model and spatial dimension.
Definition at line 44 of file CellsGenerator.hpp.
void CellsGenerator< CELL_CYCLE_MODEL, DIM >::GenerateBasic | ( | std::vector< CellPtr > & | rCells, | |
unsigned | numCells, | |||
const std::vector< unsigned > | locationIndices = std::vector<unsigned>() , |
|||
CellProliferativeType | cellProliferativeType = STEM | |||
) | [inline] |
Fills a vector of cells with a specified cell-cycle model, to match a given number of cells. Gives them birth times of 0 for node 0, -1 for node 1, -2 for node 2 etc...
rCells | An empty vector of cells to fill up. | |
numCells | The number of cells to generate. | |
locationIndices | is used when a birth-time hint is needed for individual cell. Defaults to an empty vector -- otherwise must be of length numCells | |
cellProliferativeType | the cell proliferative type to give each cell (defaults to STEM) |
Definition at line 90 of file CellsGenerator.hpp.
References CellPropertyRegistry::Clear(), EXCEPTION, and CellPropertyRegistry::Instance().
void CellsGenerator< CELL_CYCLE_MODEL, DIM >::GenerateBasicRandom | ( | std::vector< CellPtr > & | rCells, | |
unsigned | numCells, | |||
CellProliferativeType | cellProliferativeType = STEM | |||
) | [inline] |
Fills a vector of cells with a specified cell-cycle model, to match a given number of cells. Gives cells a random birth time drawn uniformly from 0 to the AverageStemCellCycleTime.
rCells | An empty vector of cells to fill up. | |
numCells | The number of cells to generate. | |
cellProliferativeType | the cell proliferative type to give each cell (defaults to STEM) |
Definition at line 133 of file CellsGenerator.hpp.
References CellPropertyRegistry::Clear(), RandomNumberGenerator::Instance(), CellPropertyRegistry::Instance(), and RandomNumberGenerator::ranf().
void CellsGenerator< CELL_CYCLE_MODEL, DIM >::GenerateGivenLocationIndices | ( | std::vector< CellPtr > & | rCells, | |
const std::vector< unsigned > | locationIndices, | |||
CellProliferativeType | cellProliferativeType = STEM | |||
) | [inline] |
Fills a vector of cells with birth times to match a given vector of location indices.
rCells | An empty vector of cells to fill up. | |
locationIndices | The indices of the cell population to assign real cells to. | |
cellProliferativeType | the cell proliferative type to give each cell (defaults to STEM) |
Definition at line 164 of file CellsGenerator.hpp.
References CellPropertyRegistry::Clear(), and CellPropertyRegistry::Instance().