mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 22:26:08 -04:00
More updates based on PR comments.
This commit is contained in:
parent
29e493bcfb
commit
2aa3437cc0
5 changed files with 16 additions and 14 deletions
|
|
@ -24,7 +24,7 @@ extern int PLOT_LEVEL_LOWEST; //!< lower bound on plot universe level
|
|||
|
||||
extern std::map<int, int> plot_map; //!< map of plot ids to index
|
||||
|
||||
extern int n_plots; //!< number of plots in openmc run
|
||||
extern "C" int32_t n_plots; //!< number of plots in openmc run
|
||||
|
||||
class Plot;
|
||||
extern std::vector<Plot> plots; //!< Plot instance container
|
||||
|
|
@ -153,11 +153,11 @@ extern "C" void read_plots(pugi::xml_node* plot_node);
|
|||
|
||||
//! Create a ppm image for a plot object
|
||||
//! \param[in] plot object
|
||||
extern "C" void create_ppm(Plot pl);
|
||||
void create_ppm(Plot pl);
|
||||
|
||||
//! Create an hdf5 voxel file for a plot object
|
||||
//! \param[in] plot object
|
||||
extern "C" void create_voxel(Plot pl);
|
||||
void create_voxel(Plot pl);
|
||||
|
||||
|
||||
} // namespace openmc
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue