Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#ifndef MANTID_KERNEL_HISTOGRAM_HISTOGRAMX_H_
#define MANTID_KERNEL_HISTOGRAM_HISTOGRAMX_H_
#include "MantidKernel/DllConfig.h"
#include "MantidKernel/Histogram/HistogramData.h"
#include "MantidKernel/Histogram/ConstIterable.h"
#include "MantidKernel/Histogram/Points.h"
#include "MantidKernel/Histogram/BinEdges.h"
namespace Mantid {
namespace Kernel {
/** HistogramX : TODO: DESCRIPTION
Copyright © 2016 ISIS Rutherford Appleton Laboratory, NScD Oak Ridge
National Laboratory & European Spallation Source
This file is part of Mantid.
Mantid is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
Mantid is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
File change history is stored at: <https://github.com/mantidproject/mantid>
Code Documentation is available at: <http://doxygen.mantidproject.org>
*/
class MANTID_KERNEL_DLL HistogramX : public HistogramData<HistogramX> {
public:
explicit HistogramX(const Points &points);
explicit HistogramX(const BinEdges &binEdges);
Points points() const;
template <typename T> void setPoints(T &&data);
BinEdges binEdges() const;
template <typename T> void setBinEdges(T &&data);
private:
enum class XMode { BinEdges, Points };
XMode xMode() const noexcept;
void checkSize(const Points &points) const;
void checkSize(const BinEdges &binEdges) const;
XMode m_xMode;
template <typename T> void HistogramX::setPoints(T &&data) {
Points &&points = Points(std::forward<T>(data));
checkSize(points);
m_xMode = XMode::Points;
m_data = points.cowData();
}
template <typename T> void HistogramX::setBinEdges(T &&data) {
BinEdges &&edges = BinEdges(std::forward<T>(data));
checkSize(edges);
m_xMode = XMode::BinEdges;
m_data = edges.cowData();
}
} // namespace Kernel
} // namespace Mantid
#endif /* MANTID_KERNEL_HISTOGRAM_HISTOGRAMX_H_ */