36#include "CellMutationStatesCountWriter.hpp"
38#include "AbstractCellPopulation.hpp"
39#include "MeshBasedCellPopulation.hpp"
40#include "CaBasedCellPopulation.hpp"
41#include "NodeBasedCellPopulation.hpp"
42#include "PottsBasedCellPopulation.hpp"
43#include "VertexBasedCellPopulation.hpp"
44#include "ImmersedBoundaryCellPopulation.hpp"
46template<
unsigned ELEMENT_DIM,
unsigned SPACE_DIM>
52template<
unsigned ELEMENT_DIM,
unsigned SPACE_DIM>
59 *this->mpOutStream <<
"Time\t ";
61 const std::vector<boost::shared_ptr<AbstractCellProperty> >& r_cell_properties = pCellPopulation->
GetCellPropertyRegistry()->rGetAllCellProperties();
63 for (
unsigned i=0; i<r_cell_properties.size(); i++)
65 if (r_cell_properties[i]->IsSubType<AbstractCellMutationState>())
67 *this->mpOutStream << r_cell_properties[i]->GetIdentifier() <<
"\t ";
74template<
unsigned ELEMENT_DIM,
unsigned SPACE_DIM>
81 for (
unsigned i=0; i<mutation_state_count.size(); i++)
83 *this->mpOutStream << mutation_state_count[i] <<
"\t";
88template<
unsigned ELEMENT_DIM,
unsigned SPACE_DIM>
95 for (
unsigned i=0; i<mutation_state_count.size(); i++)
97 *this->mpOutStream << mutation_state_count[i] <<
"\t";
102template<
unsigned ELEMENT_DIM,
unsigned SPACE_DIM>
105 VisitAnyPopulation(pCellPopulation);
108template<
unsigned ELEMENT_DIM,
unsigned SPACE_DIM>
111 VisitAnyPopulation(pCellPopulation);
114template<
unsigned ELEMENT_DIM,
unsigned SPACE_DIM>
117 VisitAnyPopulation(pCellPopulation);
120template<
unsigned ELEMENT_DIM,
unsigned SPACE_DIM>
123 VisitAnyPopulation(pCellPopulation);
126template<
unsigned ELEMENT_DIM,
unsigned SPACE_DIM>
129 VisitAnyPopulation(pCellPopulation);
#define EXPORT_TEMPLATE_CLASS_ALL_DIMS(CLASS)
std::vector< unsigned > GetCellMutationStateCount()
boost::shared_ptr< CellPropertyRegistry > GetCellPropertyRegistry()
void SetDefaultCellMutationStateAndProliferativeTypeOrdering()
void VisitAnyPopulation(AbstractCellPopulation< SPACE_DIM, SPACE_DIM > *pCellPopulation)
virtual void Visit(MeshBasedCellPopulation< ELEMENT_DIM, SPACE_DIM > *pCellPopulation)
virtual void WriteHeader(AbstractCellPopulation< ELEMENT_DIM, SPACE_DIM > *pCellPopulation)
CellMutationStatesCountWriter()