mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-21 06:25:30 -04:00
16 lines
294 B
C++
16 lines
294 B
C++
#ifndef OPENMC_SUMMARY_H
|
|
#define OPENMC_SUMMARY_H
|
|
|
|
#include <hdf5.h>
|
|
|
|
namespace openmc {
|
|
|
|
void write_summary();
|
|
void write_header(hid_t file);
|
|
void write_nuclides(hid_t file);
|
|
void write_geometry(hid_t file);
|
|
void write_materials(hid_t file);
|
|
|
|
} // namespace openmc
|
|
|
|
#endif // OPENMC_SUMMARY_H
|