Phoxonics  1.0
Object Oriented FDTD Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
Hdf5Renderer.hpp
Go to the documentation of this file.
1 /*
2  * Hdf5Renderer.hpp
3  *
4  * Created on: Dec 4, 2014
5  * Author: cuda
6  */
7 
8 #ifndef HDF5RENDERER_HPP_
9 #define HDF5RENDERER_HPP_
10 
11 #include <string>
12 #include <cstdlib>
13 #include <iostream>
14 #include <fstream>
15 #include <sstream>
16 #include <iomanip>
17 #include "../../../common/common.hpp"
18 
19 namespace phoxonics {
20 namespace visual {
21 
22 class Hdf5Renderer {
23 public:
24  Hdf5Renderer();
25  virtual ~Hdf5Renderer();
26 
27  void generate_hdf5_sh(std::string hdf5_geometry_file, std::string hdf5_data_file,
28  std::string hdf5_range_slices, bool execute_shell, std::string detectors,
29  std::string h5topng_zoom, std::string sim_run_folder, std::string sim_tpl_folder);
30 };
31 
32 } /* namespace visual */
33 } /* namespace phoxonics */
34 
35 #endif /* HDF5RENDERER_HPP_ */
Hdf5Renderer()
Definition: Hdf5Renderer.cpp:13
Definition: CommonBase.hpp:14
Definition: Hdf5Renderer.hpp:22
void generate_hdf5_sh(std::string hdf5_geometry_file, std::string hdf5_data_file, std::string hdf5_range_slices, bool execute_shell, std::string detectors, std::string h5topng_zoom, std::string sim_run_folder, std::string sim_tpl_folder)
Definition: Hdf5Renderer.cpp:21
virtual ~Hdf5Renderer()
Definition: Hdf5Renderer.cpp:17