Chaste Commit::ca8ccdedf819b6e02855bc0e8e6f50bdecbc5208
|
#include <AbstractCentreBasedDivisionRule.hpp>
Public Member Functions | |
AbstractCentreBasedDivisionRule () | |
virtual | ~AbstractCentreBasedDivisionRule () |
virtual std::pair< c_vector< double, SPACE_DIM >, c_vector< double, SPACE_DIM > > | CalculateCellDivisionVector (CellPtr pParentCell, AbstractCentreBasedCellPopulation< ELEMENT_DIM, SPACE_DIM > &rCellPopulation)=0 |
void | OutputCellCentreBasedDivisionRuleInfo (out_stream &rParamsFile) |
Public Member Functions inherited from Identifiable | |
virtual | ~Identifiable () |
std::string | GetIdentifier () const |
Protected Member Functions | |
virtual void | OutputCellCentreBasedDivisionRuleParameters (out_stream &rParamsFile) |
Private Member Functions | |
template<class Archive > | |
void | serialize (Archive &archive, const unsigned int version) |
Friends | |
class | boost::serialization::access |
An abstract cell division rule for use in centre-based simulations.
The purpose of this class is to return the locations of the two daughters of a dividing cell.
Definition at line 54 of file AbstractCentreBasedDivisionRule.hpp.
AbstractCentreBasedDivisionRule< ELEMENT_DIM, SPACE_DIM >::AbstractCentreBasedDivisionRule | ( | ) |
Default constructor.
Definition at line 39 of file AbstractCentreBasedDivisionRule.cpp.
|
virtual |
Empty destructor.
Definition at line 44 of file AbstractCentreBasedDivisionRule.cpp.
|
pure virtual |
Return a pair of vectors used to position the daughters of a dividing cell.
As this method is pure virtual, it must be overridden in subclasses.
pParentCell | The cell to divide |
rCellPopulation | The centre-based cell population |
Implemented in FixedCentreBasedDivisionRule< ELEMENT_DIM, SPACE_DIM >, RandomDirectionCentreBasedDivisionRule< ELEMENT_DIM, SPACE_DIM >, and CryptCentreBasedDivisionRule< ELEMENT_DIM, SPACE_DIM >.
void AbstractCentreBasedDivisionRule< ELEMENT_DIM, SPACE_DIM >::OutputCellCentreBasedDivisionRuleInfo | ( | out_stream & | rParamsFile | ) |
Output the name of the concrete class and call OutputCellCentreBasedDivisionRuleParameters().
rParamsFile | The stream of the parameter file |
Definition at line 49 of file AbstractCentreBasedDivisionRule.cpp.
|
protectedvirtual |
Output any parameters associated with the division rule. Currently empty since this class has no member variables. Should be overridden by any child classes that have parameters.
rParamsFile | The stream of the parameter file |
Definition at line 59 of file AbstractCentreBasedDivisionRule.cpp.
|
inlineprivate |
Serialize the object and its member variables.
archive | the archive |
version | the current version of this class |
Definition at line 66 of file AbstractCentreBasedDivisionRule.hpp.
|
friend |
Definition at line 58 of file AbstractCentreBasedDivisionRule.hpp.