25namespace Experimental {
41 friend class ::ROOT::Experimental::RHistEngine;
43 std::vector<RAxisVariant>
fAxes;
50 throw std::invalid_argument(
"must have at least 1 axis object");
55 const std::vector<RAxisVariant> &
Get()
const {
return fAxes; }
68 for (
auto &&axis :
fAxes) {
69 if (
auto *
regular = std::get_if<RRegularAxis>(&axis)) {
71 }
else if (
auto *variable = std::get_if<RVariableBinAxis>(&axis)) {
74 throw std::logic_error(
"unimplemented axis type");
81 template <std::size_t
I, std::size_t
N,
typename... A>
84 const auto &axis =
fAxes[
I];
86 if (
auto *
regular = std::get_if<RRegularAxis>(&axis)) {
89 }
else if (
auto *variable = std::get_if<RVariableBinAxis>(&axis)) {
90 index *= variable->GetTotalNBins();
91 linIndex = variable->ComputeLinearizedIndex(std::get<I>(args));
93 throw std::logic_error(
"unimplemented axis type");
99 if constexpr (
I + 1 <
N) {
102 return {
index,
true};
105 template <std::size_t
N,
typename... A>
116 template <
typename... A>
119 if (
sizeof...(A) !=
fAxes.size()) {
120 throw std::invalid_argument(
"invalid number of arguments to ComputeGlobalIndex");
129 template <std::
size_t N>
133 throw std::invalid_argument(
"invalid number of indices passed to ComputeGlobalIndex");
136 for (std::size_t i = 0; i <
N; i++) {
138 const auto &axis =
fAxes[i];
140 if (
auto *
regular = std::get_if<RRegularAxis>(&axis)) {
143 }
else if (
auto *variable = std::get_if<RVariableBinAxis>(&axis)) {
147 throw std::logic_error(
"unimplemented axis type");
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t index
Bin configurations for all dimensions of a histogram.
friend bool operator==(const RAxes &lhs, const RAxes &rhs)
std::size_t GetNDimensions() const
friend bool operator!=(const RAxes &lhs, const RAxes &rhs)
RLinearizedIndex ComputeGlobalIndexImpl(std::size_t index, const std::tuple< A... > &args) const
RLinearizedIndex ComputeGlobalIndex(const std::tuple< A... > &args) const
Compute the global index for all axes.
std::size_t ComputeTotalNBins() const
Compute the total number of bins for all axes.
RLinearizedIndex ComputeGlobalIndexImpl(const std::tuple< A... > &args) const
RAxes(std::vector< RAxisVariant > axes)
void Streamer(TBuffer &)
ROOT Streamer function to throw when trying to store an object of this class.
RLinearizedIndex ComputeGlobalIndex(const std::array< RBinIndex, N > &indices) const
Compute the global index for all axes.
std::vector< RAxisVariant > fAxes
const std::vector< RAxisVariant > & Get() const
A histogram data structure to bin data along multiple dimensions.
Buffer base class used for serializing objects.
std::variant< RRegularAxis, RVariableBinAxis > RAxisVariant
Variant of all supported axis types.
A linearized index that can be invalid.