Chaste Release::3.1
|
#include <PlaneBasedCellKiller.hpp>
Public Member Functions | |
PlaneBasedCellKiller (AbstractCellPopulation< DIM > *pCellPopulation, c_vector< double, DIM > point, c_vector< double, DIM > normal) | |
const c_vector< double, DIM > & | rGetPointOnPlane () const |
const c_vector< double, DIM > & | rGetNormalToPlane () const |
virtual void | CheckAndLabelCellsForApoptosisOrDeath () |
void | OutputCellKillerParameters (out_stream &rParamsFile) |
Private Member Functions | |
template<class Archive > | |
void | serialize (Archive &archive, const unsigned int version) |
Private Attributes | |
c_vector< double, DIM > | mPointOnPlane |
c_vector< double, DIM > | mNormalToPlane |
Friends | |
class | boost::serialization::access |
A cell killer that kills cells if they are outside the domain. defined by a point, mPointOnPlane, and an outward pointing normal, mNormalToPlane. Works for all CellPopulations.
Definition at line 51 of file PlaneBasedCellKiller.hpp.
PlaneBasedCellKiller< DIM >::PlaneBasedCellKiller | ( | AbstractCellPopulation< DIM > * | pCellPopulation, |
c_vector< double, DIM > | point, | ||
c_vector< double, DIM > | normal | ||
) |
Default constructor.
pCellPopulation | pointer to a cell population |
point | point on the plane which nodes cannot cross |
normal | the outward pointing unit normal to the boundary plane |
Definition at line 39 of file PlaneBasedCellKiller.cpp.
References PlaneBasedCellKiller< DIM >::mNormalToPlane.
void PlaneBasedCellKiller< DIM >::CheckAndLabelCellsForApoptosisOrDeath | ( | ) | [virtual] |
Loops over cells and kills cells outside boundary.
Implements AbstractCellKiller< DIM >.
Definition at line 62 of file PlaneBasedCellKiller.cpp.
References AbstractCellPopulation< ELEMENT_DIM, SPACE_DIM >::Begin().
void PlaneBasedCellKiller< DIM >::OutputCellKillerParameters | ( | out_stream & | rParamsFile | ) | [virtual] |
Overridden OutputCellKillerParameters() method.
rParamsFile | the file stream to which the parameters are output |
Implements AbstractCellKiller< DIM >.
Definition at line 78 of file PlaneBasedCellKiller.cpp.
References AbstractCellKiller< SPACE_DIM >::OutputCellKillerParameters().
const c_vector< double, DIM > & PlaneBasedCellKiller< DIM >::rGetNormalToPlane | ( | ) | const |
Definition at line 56 of file PlaneBasedCellKiller.cpp.
const c_vector< double, DIM > & PlaneBasedCellKiller< DIM >::rGetPointOnPlane | ( | ) | const |
Definition at line 50 of file PlaneBasedCellKiller.cpp.
void PlaneBasedCellKiller< 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 74 of file PlaneBasedCellKiller.hpp.
friend class boost::serialization::access [friend] |
Needed for serialization.
Reimplemented from AbstractCellKiller< DIM >.
Definition at line 66 of file PlaneBasedCellKiller.hpp.
c_vector<double, DIM> PlaneBasedCellKiller< DIM >::mNormalToPlane [private] |
The outward pointing unit normal to the boundary plane.
Definition at line 63 of file PlaneBasedCellKiller.hpp.
Referenced by PlaneBasedCellKiller< DIM >::PlaneBasedCellKiller().
c_vector<double, DIM> PlaneBasedCellKiller< DIM >::mPointOnPlane [private] |
A point on the plane which nodes cannot cross.
Definition at line 58 of file PlaneBasedCellKiller.hpp.