#include <CellRadiusWriter.hpp>
Inherits AbstractCellWriter< ELEMENT_DIM, SPACE_DIM >.
Public Member Functions | |
CellRadiusWriter () | |
double | GetCellDataForVtkOutput (CellPtr pCell, AbstractCellPopulation< ELEMENT_DIM, SPACE_DIM > *pCellPopulation) |
virtual void | VisitCell (CellPtr pCell, AbstractCellPopulation< ELEMENT_DIM, SPACE_DIM > *pCellPopulation) |
Private Member Functions | |
template<class Archive > | |
void | serialize (Archive &archive, const unsigned int version) |
Friends | |
class | boost::serialization::access |
A class written using the visitor pattern for writing the radius of each cell to file. This class is designed for use with a NodeBasedCellPopulation (or its subclasses) only; if used with other cell populations, the writer will output zero for each cell's radius.
Definition at line 50 of file CellRadiusWriter.hpp.
CellRadiusWriter< ELEMENT_DIM, SPACE_DIM >::CellRadiusWriter | ( | ) | [inline] |
Default constructor.
Definition at line 40 of file CellRadiusWriter.cpp.
References AbstractCellWriter< ELEMENT_DIM, SPACE_DIM >::mVtkCellDataName.
double CellRadiusWriter< ELEMENT_DIM, SPACE_DIM >::GetCellDataForVtkOutput | ( | CellPtr | pCell, | |
AbstractCellPopulation< ELEMENT_DIM, SPACE_DIM > * | pCellPopulation | |||
) | [inline, virtual] |
Overridden GetCellDataForVtkOutput() method.
Get a double associated with a cell. This method reduces duplication of code between the methods VisitCell() and AddVtkData().
pCell | a cell | |
pCellPopulation | a pointer to the cell population owning the cell |
Implements AbstractCellWriter< ELEMENT_DIM, SPACE_DIM >.
Definition at line 47 of file CellRadiusWriter.cpp.
References AbstractCellPopulation< ELEMENT_DIM, SPACE_DIM >::GetLocationIndexUsingCell(), and AbstractCellPopulation< ELEMENT_DIM, SPACE_DIM >::GetNode().
void CellRadiusWriter< ELEMENT_DIM, 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 AbstractCellWriter< ELEMENT_DIM, SPACE_DIM >.
Definition at line 62 of file CellRadiusWriter.hpp.
void CellRadiusWriter< ELEMENT_DIM, SPACE_DIM >::VisitCell | ( | CellPtr | pCell, | |
AbstractCellPopulation< ELEMENT_DIM, SPACE_DIM > * | pCellPopulation | |||
) | [inline, virtual] |
Overridden VisitCell() method.
Visit a cell and write its radius.
Outputs a line of space-separated values of the form: ...[location index] [cell id] [x-pos] [y-pos] [z-pos] [cell radius] ... with [y-pos] and [z-pos] included for 2 and 3 dimensional simulations, respectively.
This is appended to the output written by AbstractCellBasedWriter, which is a single value [present simulation time], followed by a tab.
pCell | a cell | |
pCellPopulation | a pointer to the cell population owning the cell |
Implements AbstractCellWriter< ELEMENT_DIM, SPACE_DIM >.
Definition at line 59 of file CellRadiusWriter.cpp.
References AbstractCellPopulation< ELEMENT_DIM, SPACE_DIM >::GetLocationIndexUsingCell(), AbstractCellPopulation< ELEMENT_DIM, SPACE_DIM >::GetLocationOfCellCentre(), AbstractCellPopulation< ELEMENT_DIM, SPACE_DIM >::GetNode(), and AbstractCellBasedWriter< ELEMENT_DIM, SPACE_DIM >::mpOutStream.
friend class boost::serialization::access [friend] |
Needed for serialization.
Reimplemented from AbstractCellWriter< ELEMENT_DIM, SPACE_DIM >.
Definition at line 54 of file CellRadiusWriter.hpp.