#include <TargetedCellKiller.hpp>
Inherits AbstractCellKiller< DIM >.
Public Member Functions | |
TargetedCellKiller (AbstractCellPopulation< DIM > *pCellPopulation, unsigned targetedIndex, bool bloodLust=true) | |
unsigned | GetTargetIndex () const |
unsigned | GetBloodLust () const |
void | TestAndLabelCellsForApoptosisOrDeath () |
void | OutputCellKillerParameters (out_stream &rParamsFile) |
Private Member Functions | |
template<class Archive > | |
void | serialize (Archive &archive, const unsigned int version) |
Private Attributes | |
unsigned | mTargetIndex |
bool | mBloodLust |
Friends | |
class | boost::serialization::access |
Simple cell killer, which at the first timestep kills any cell whose corresponding location index is a given number.
Definition at line 42 of file TargetedCellKiller.hpp.
TargetedCellKiller< DIM >::TargetedCellKiller | ( | AbstractCellPopulation< DIM > * | pCellPopulation, | |
unsigned | targetedIndex, | |||
bool | bloodLust = true | |||
) | [inline] |
Default constructor.
pCellPopulation | pointer to the cell population | |
targetedIndex | The index of the cell to kill | |
bloodLust | Wether to kill cells or not defaults to true (used by load methods) |
Definition at line 32 of file TargetedCellKiller.cpp.
unsigned TargetedCellKiller< DIM >::GetBloodLust | ( | ) | const [inline] |
Definition at line 46 of file TargetedCellKiller.cpp.
References TargetedCellKiller< DIM >::mBloodLust.
unsigned TargetedCellKiller< DIM >::GetTargetIndex | ( | ) | const [inline] |
Definition at line 40 of file TargetedCellKiller.cpp.
References TargetedCellKiller< DIM >::mTargetIndex.
void TargetedCellKiller< DIM >::OutputCellKillerParameters | ( | out_stream & | rParamsFile | ) | [inline, virtual] |
Overridden OutputCellKillerParameters() method.
rParamsFile | the file stream to which the parameters are output |
Implements AbstractCellKiller< DIM >.
Definition at line 63 of file TargetedCellKiller.cpp.
References TargetedCellKiller< DIM >::mBloodLust, and TargetedCellKiller< DIM >::mTargetIndex.
void TargetedCellKiller< DIM >::serialize | ( | Archive & | archive, | |
const unsigned int | version | |||
) | [inline, private] |
Archive the object.
archive | the archive | |
version | the current version of this class |
Reimplemented from AbstractCellKiller< DIM >.
Definition at line 66 of file TargetedCellKiller.hpp.
void TargetedCellKiller< DIM >::TestAndLabelCellsForApoptosisOrDeath | ( | ) | [inline, virtual] |
Loop over cells and start apoptosis randomly, based on the user-set probability.
Implements AbstractCellKiller< DIM >.
Definition at line 52 of file TargetedCellKiller.cpp.
References AbstractCellPopulation< DIM >::GetCellUsingLocationIndex(), AbstractCellPopulation< DIM >::GetNumRealCells(), TargetedCellKiller< DIM >::mBloodLust, AbstractCellKiller< DIM >::mpCellPopulation, and TargetedCellKiller< DIM >::mTargetIndex.
friend class boost::serialization::access [friend] |
Needed for serialization.
Reimplemented from AbstractCellKiller< DIM >.
Definition at line 58 of file TargetedCellKiller.hpp.
bool TargetedCellKiller< DIM >::mBloodLust [private] |
Variable to reack when the cell has been killed. Once the cell has been called mBloodLust will stop the killer killing more cells.
Definition at line 55 of file TargetedCellKiller.hpp.
Referenced by TargetedCellKiller< DIM >::GetBloodLust(), TargetedCellKiller< DIM >::OutputCellKillerParameters(), and TargetedCellKiller< DIM >::TestAndLabelCellsForApoptosisOrDeath().
unsigned TargetedCellKiller< DIM >::mTargetIndex [private] |
The index of the cell to kill
Definition at line 49 of file TargetedCellKiller.hpp.
Referenced by TargetedCellKiller< DIM >::GetTargetIndex(), TargetedCellKiller< DIM >::OutputCellKillerParameters(), and TargetedCellKiller< DIM >::TestAndLabelCellsForApoptosisOrDeath().