Adding an xml setting for the showing the overlaps.

This commit is contained in:
Patrick Shriwise 2019-06-10 20:19:57 -05:00
parent 552ab71a50
commit e837f2eb19
2 changed files with 17 additions and 1 deletions

View file

@ -112,7 +112,7 @@ public:
Position width_; //!< Plot width in geometry
PlotBasis basis_; //!< Plot basis (XY/XZ/YZ)
std::array<size_t, 3> pixels_; //!< Plot size in pixels
bool color_overlaps_ = true;
bool color_overlaps_;
int level_; //!< Plot universe level
};
@ -210,6 +210,7 @@ private:
void set_user_colors(pugi::xml_node plot_node);
void set_meshlines(pugi::xml_node plot_node);
void set_mask(pugi::xml_node plot_node);
void set_color_overlaps(pugi::xml_node plot_node);
// Members
public: