Skip to content
Snippets Groups Projects
Commit 0507da8d authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

rm CoordSystem2D::addAxisData

parent 96c82e88
No related branches found
No related tags found
1 merge request!1556cleanup CoordSyst classes
...@@ -51,11 +51,6 @@ CoordSystem2D::CoordSystem2D(const CoordSystem2D& other) ...@@ -51,11 +51,6 @@ CoordSystem2D::CoordSystem2D(const CoordSystem2D& other)
{ {
} }
void CoordSystem2D::addAxisData(std::string name, double min, double max, size_t nbins)
{
m_axes.emplace_back(new FixedBinAxis(name, min, max, nbins));
}
double CoordSystem2D::calculateMin(size_t i_axis, Coords units) const double CoordSystem2D::calculateMin(size_t i_axis, Coords units) const
{ {
ASSERT(i_axis < rank()); ASSERT(i_axis < rank());
......
...@@ -45,8 +45,6 @@ public: ...@@ -45,8 +45,6 @@ public:
protected: protected:
CoordSystem2D(const CoordSystem2D& other); CoordSystem2D(const CoordSystem2D& other);
void addAxisData(std::string name, double min, double max, size_t nbins);
std::vector<const IAxis*> m_axes; std::vector<const IAxis*> m_axes;
private: private:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment