#include <OxygenBasedCellKiller.hpp>
Public Member Functions | |
OxygenBasedCellKiller (AbstractCellPopulation< SPACE_DIM > *pCellPopulation) | |
void | TestAndLabelSingleCellForApoptosis (CellPtr pCell) |
virtual void | TestAndLabelCellsForApoptosisOrDeath () |
void | OutputCellKillerParameters (out_stream &rParamsFile) |
Private Member Functions | |
template<class Archive> | |
void | serialize (Archive &archive, const unsigned int version) |
Friends | |
class | boost::serialization::access |
The non-dimensionalised oxygen concentration at which cells become hypoxic is optionally passed into the constructor.
Definition at line 44 of file OxygenBasedCellKiller.hpp.
OxygenBasedCellKiller< SPACE_DIM >::OxygenBasedCellKiller | ( | AbstractCellPopulation< SPACE_DIM > * | pCellPopulation | ) | [inline] |
Constructor.
pCellPopulation | pointer to the cell population. |
Definition at line 32 of file OxygenBasedCellKiller.cpp.
void OxygenBasedCellKiller< SPACE_DIM >::serialize | ( | Archive & | archive, | |
const unsigned int | version | |||
) | [inline, private] |
Serialize the object and its member variables.
archive | the archive | |
version | the current version of this class |
Reimplemented from AbstractCellKiller< SPACE_DIM >.
Definition at line 50 of file OxygenBasedCellKiller.hpp.
void OxygenBasedCellKiller< SPACE_DIM >::TestAndLabelSingleCellForApoptosis | ( | CellPtr | pCell | ) | [inline] |
Starts apoptosis if the cell has has been hypoxic for longer than some critical period, and it is currently hypoxic, and a random number is less than some probability of death (which scales linearly with the local oxygen concentration).
pCell | the cell to test for apoptosis. |
Definition at line 38 of file OxygenBasedCellKiller.cpp.
Referenced by OxygenBasedCellKiller< SPACE_DIM >::TestAndLabelCellsForApoptosisOrDeath().
void OxygenBasedCellKiller< SPACE_DIM >::TestAndLabelCellsForApoptosisOrDeath | ( | ) | [inline, virtual] |
Loop over cells and start apoptosis if the cell has been undergone a prolonged period of hypoxia.
Implements AbstractCellKiller< SPACE_DIM >.
Definition at line 47 of file OxygenBasedCellKiller.cpp.
References AbstractCellPopulation< DIM >::Begin(), AbstractCellPopulation< DIM >::End(), AbstractCellKiller< SPACE_DIM >::mpCellPopulation, and OxygenBasedCellKiller< SPACE_DIM >::TestAndLabelSingleCellForApoptosis().
void OxygenBasedCellKiller< DIM >::OutputCellKillerParameters | ( | out_stream & | rParamsFile | ) | [inline, virtual] |
Outputs cell killer parameters to file
As this method is pure virtual, it must be overridden in subclasses.
rParamsFile | the file stream to which the parameters are output |
Implements AbstractCellKiller< SPACE_DIM >.
Definition at line 58 of file OxygenBasedCellKiller.cpp.
References AbstractCellKiller< SPACE_DIM >::OutputCellKillerParameters().
friend class boost::serialization::access [friend] |
Needed for serialization.
Reimplemented from AbstractCellKiller< SPACE_DIM >.
Definition at line 48 of file OxygenBasedCellKiller.hpp.