Fixing global plot variable definitions.

This commit is contained in:
Patrick Shriwise 2018-10-13 20:09:53 -05:00
parent 2f4ef9b8db
commit d11b90aa47
2 changed files with 15 additions and 7 deletions

View file

@ -17,6 +17,14 @@
namespace openmc {
int PLOT_LEVEL_LOWEST = -1;
std::map<int, int> plot_dict;
int n_plots;
std::vector<ObjectPlot*> plots;
const int RED = 0;
const int GREEN = 1;
const int BLUE = 2;