28namespace 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) {
75 template <std::size_t
I, std::size_t
N,
typename... A>
78 using ArgumentType = std::tuple_element_t<
I, std::tuple<A...>>;
79 const auto &axis =
fAxes[
I];
81 if (
auto *
regular = axis.GetRegularAxis()) {
82 if constexpr (std::is_convertible_v<ArgumentType, RRegularAxis::ArgumentType>) {
86 throw std::invalid_argument(
"invalid type of argument");
88 }
else if (
auto *variable = axis.GetVariableBinAxis()) {
89 if constexpr (std::is_convertible_v<ArgumentType, RVariableBinAxis::ArgumentType>) {
90 index *= variable->GetTotalNBins();
91 linIndex = variable->ComputeLinearizedIndex(std::get<I>(args));
93 throw std::invalid_argument(
"invalid type of argument");
95 }
else if (
auto *
categorical = axis.GetCategoricalAxis()) {
96 if constexpr (std::is_convertible_v<ArgumentType, RCategoricalAxis::ArgumentType>) {
100 throw std::invalid_argument(
"invalid type of argument");
103 throw std::logic_error(
"unimplemented axis type");
109 if constexpr (
I + 1 <
N) {
112 return {
index,
true};
115 template <std::size_t
N,
typename... A>
129 template <
typename... A>
132 if (
sizeof...(A) !=
fAxes.size()) {
133 throw std::invalid_argument(
"invalid number of arguments to ComputeGlobalIndex");
142 template <std::
size_t N>
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");
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.
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)
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
Buffer base class used for serializing objects.
A linearized index that can be invalid.