cleanup of comments and adding some parameter descriptions for altered function prototypes

This commit is contained in:
John Tramm 2019-11-22 22:56:16 +00:00
parent d3e2d36fc8
commit 12ec9bacff
14 changed files with 66 additions and 10 deletions

View file

@ -28,8 +28,9 @@ namespace model {
extern std::vector<Plot> plots; //!< Plot instance container
extern std::unordered_map<int, int> plot_map; //!< map of plot ids to index
extern uint64_t plotter_prn_seeds[N_STREAMS];
extern int plotter_stream;
extern uint64_t plotter_prn_seeds[N_STREAMS]; // Random number seeds used for plotter
extern int plotter_stream; // Stream index used by the plotter
} // namespace model
@ -288,7 +289,7 @@ void create_voxel(Plot pl);
//! Create a randomly generated RGB color
//! \return RGBColor with random value
RGBColor random_color(void);
RGBColor random_color();
} // namespace openmc