Move all summary.h5 geometry writing to C++

This commit is contained in:
Sterling Harper 2018-08-24 19:06:04 -04:00
parent 92f9c09a81
commit 243eae1244
6 changed files with 89 additions and 135 deletions

36
src/summary.cpp Normal file
View file

@ -0,0 +1,36 @@
#include "cell.h"
#include "hdf5_interface.h"
#include "lattice.h"
#include "surface.h"
namespace openmc {
extern "C" void
write_geometry(hid_t file_id) {
auto geom_group = create_group(file_id, "geometry");
write_attribute(geom_group, "n_cells", global_cells.size());
write_attribute(geom_group, "n_surfaces", global_surfaces.size());
write_attribute(geom_group, "n_universes", global_universes.size());
write_attribute(geom_group, "n_lattices", lattices_c.size());
auto cells_group = create_group(geom_group, "cells");
for (Cell* c : global_cells) c->to_hdf5(cells_group);
close_group(cells_group);
auto surfaces_group = create_group(geom_group, "surfaces");
for (Surface* surf : global_surfaces) surf->to_hdf5(surfaces_group);
close_group(surfaces_group);
auto universes_group = create_group(geom_group, "universes");
for (Universe* u : global_universes) u->to_hdf5(universes_group);
close_group(universes_group);
auto lattices_group = create_group(geom_group, "lattices");
for (Lattice* lat : lattices_c) lat->to_hdf5(lattices_group);
close_group(lattices_group);
close_group(geom_group);
}
} // namespace openmc