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

FixedBinAxis w/o members

parent 089c8c8a
No related branches found
No related tags found
1 merge request!1621Scale (IAxis) now without children
......@@ -36,9 +36,6 @@ std::vector<Bin1D> bounds2bins(size_t N, double start, double end)
FixedBinAxis::FixedBinAxis(const std::string& name, size_t nbins, double start, double end)
: IAxis(name, bounds2bins(nbins, start, end))
, m_nbins(nbins)
, m_start(start)
, m_end(end)
{
}
......
......@@ -27,11 +27,6 @@ public:
//! @param start low edge of first bin
//! @param end upper edge of last bin
FixedBinAxis(const std::string& name, size_t nbins, double start, double end);
private:
size_t m_nbins;
double m_start;
double m_end;
};
IAxis* newFixedBinAxis(const std::string& name, size_t nbins, double start, double end);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment