22 #ifndef CELLTYPEREPORTER_HPP
23 #define CELLTYPEREPORTER_HPP
24 #include <LbmLib/include/reportHandler/AbstractReportFunctor.hpp>
31 namespace reportHandler {
44 const std::vector<std::vector<nodes::PhysicalNode*> >&
46 const std::string& filename)
48 physicalNodes_(physicalNodes) {}
54 virtual void operator()(
unsigned int time)
const;
60 const std::vector<std::vector<nodes::PhysicalNode*> >& physicalNodes_;
64 const std::string solverName_;
68 #endif // CELLTYPEREPORTER_HPP
This class reports the domainID's. Order of dumping: x, y, DomainId.
virtual void operator()(unsigned int time) const
operator() Writes the report
the abstract reporter functor inherit from this for your reporters
CellTypeReporter(const std::vector< std::vector< nodes::PhysicalNode * > > &physicalNodes, const std::string &filename)
CellTypeReporter The constructor.