hdf5_logger.hpp
Go to the documentation of this file.
1 
6 #ifndef HDF5_LOGGER_HPP
7 #define HDF5_LOGGER_HPP 1
8 
9 #include "voronoi_logger.hpp"
10 
11 using std::string;
12 
15 {
16 public:
17 
21  explicit HDF5Logger(const string& fname);
22 
23  void output(const VoronoiMesh& v);
24 
25  void output(const Tessellation& v);
26 
27 private:
28  const string fname_;
29 };
30 
31 #endif // HDF5_LOGGER_HPP
32 
Voronoi tessellation class.
Definition: VoronoiMesh.hpp:29
Abstract class for tessellation.
Abstract class for voronoi tessellation.
void output(const VoronoiMesh &v)
Outputs information from the Voronoi tessellation.
Definition: hdf5_logger.cpp:35
A debugging function for the Voronoi tessellation.
HDF5Logger(const string &fname)
Class constructor.
Definition: hdf5_logger.cpp:7
Writes tessellation data to hdf5 format.
Definition: hdf5_logger.hpp:14