Skip to content
Snippets Groups Projects

IAxis::operator<< now only using m_bins

Merged Wuttke, Joachim requested to merge axis-print into main
+ 2
1
@@ -132,7 +132,8 @@ std::ostream& operator<<(std::ostream& ostr, const IAxis& ax)
}
}
if (isDiscreteAxis) {
ostr << "DiscreteAxis(\"" << ax.axisName() << "\", " << ", [" << std::setprecision(17);
ostr << "DiscreteAxis(\"" << ax.axisName() << "\", "
<< ", [" << std::setprecision(17);
for (double v : ax.binCenters())
ostr << v << ",";
ostr << "])";
Loading