30namespace Experimental {
43 friend class ::ROOT::Experimental::RHistEngine;
45 std::vector<RAxisVariant>
fAxes;
52 throw std::invalid_argument(
"must have at least 1 axis object");
57 const std::vector<RAxisVariant> &
Get()
const {
return fAxes; }
70 for (
auto &&axis :
fAxes) {
77 template <std::size_t
I, std::size_t
N,
typename... A>
80 using ArgumentType = std::tuple_element_t<
I, std::tuple<A...>>;
81 const auto &axis =
fAxes[
I];
83 if (
auto *
regular = axis.GetRegularAxis()) {
84 if constexpr (std::is_convertible_v<ArgumentType, RRegularAxis::ArgumentType>) {
88 throw std::invalid_argument(
"invalid type of argument");
90 }
else if (
auto *variable = axis.GetVariableBinAxis()) {
91 if constexpr (std::is_convertible_v<ArgumentType, RVariableBinAxis::ArgumentType>) {
92 index *= variable->GetTotalNBins();
93 linIndex = variable->ComputeLinearizedIndex(std::get<I>(args));
95 throw std::invalid_argument(
"invalid type of argument");
97 }
else if (
auto *
categorical = axis.GetCategoricalAxis()) {
98 if constexpr (std::is_convertible_v<ArgumentType, RCategoricalAxis::ArgumentType>) {
102 throw std::invalid_argument(
"invalid type of argument");
105 throw std::logic_error(
"unimplemented axis type");
111 if constexpr (
I + 1 <
N) {
114 return {
index,
true};
117 template <std::size_t
N,
typename... A>
131 template <
typename... A>
134 if (
sizeof...(A) !=
fAxes.size()) {
135 throw std::invalid_argument(
"invalid number of arguments to ComputeGlobalIndex");
141 template <
typename Container>
146 throw std::invalid_argument(
"invalid number of indices passed to ComputeGlobalIndex");
149 for (std::size_t i = 0; i <
N; i++) {
151 const auto &axis =
fAxes[i];
153 if (
auto *
regular = axis.GetRegularAxis()) {
156 }
else if (
auto *variable = axis.GetVariableBinAxis()) {
159 }
else if (
auto *
categorical = axis.GetCategoricalAxis()) {
163 throw std::logic_error(
"unimplemented axis type");
178 template <std::
size_t N>
198 std::vector<RBinIndexRange> ranges;
199 for (
auto &&axis :
fAxes) {
200 ranges.push_back(axis.GetFullRange());
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.
RBinIndexMultiDimRange GetFullMultiDimRange() const
Get the multidimensional range of all bins.
RLinearizedIndex ComputeGlobalIndexImpl(const std::tuple< A... > &args) const
std::uint64_t ComputeTotalNBins() const
Compute the total number of bins for all axes.
RAxes(std::vector< RAxisVariant > axes)
RLinearizedIndex ComputeGlobalIndexImpl(const Container &indices) const
RLinearizedIndex ComputeGlobalIndex(const std::vector< RBinIndex > &indices) const
Compute the global index for all 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 multidimensional range of bin indices.
Buffer base class used for serializing objects.
A linearized index that can be invalid.