25#include <initializer_list>
28namespace Experimental {
31template <
int DIMENSIONS,
class PRECISION,
template <
int D_,
class P_>
class... STAT>
35template <
int DIMENSIONS,
class PRECISION,
template <
int D_,
class P_>
class... STAT>
36class RHist<DIMENSIONS,
PRECISION, STAT...>
37HistFromImpl(std::unique_ptr<typename RHist<DIMENSIONS, PRECISION, STAT...>::ImplBase_t> pHistImpl);
51template <int DIMENSIONS, class PRECISION, template <int D_, class P_> class... STAT>
69 static constexpr int GetNDim() noexcept {
return DIMENSIONS; }
91 explicit RHist(std::array<RAxisConfig, DIMENSIONS> axes);
136 std::unique_ptr<ImplBase_t>
TakeImpl() &&
noexcept {
return std::move(
fImpl); }
144 void FillN(
const std::span<CoordArray_t> xN,
const std::span<Weight_t> weightN)
noexcept
146 fImpl->FillN(xN, weightN);
150 void FillN(
const std::span<CoordArray_t> xN)
noexcept {
fImpl->FillN(xN); }
178 friend RHist HistFromImpl<>(std::unique_ptr<ImplBase_t>);
182template <
int DIMENSIONS,
class PRECISION>
190template <
int DIMENSIONS,
class PRECISION,
template <
int D_,
class P_>
class... STAT>
200template <
int NDIM,
int IDIM,
class DATA,
class... PROCESSEDAXISCONFIG>
204 template <RAxisConfig::EKind KIND>
205 std::unique_ptr<Detail::RHistImplBase<DATA>>
207 PROCESSEDAXISCONFIG... processedAxisArgs)
211 using HistImpl_t =
RHistImplGen<NDIM, IDIM + 1, DATA, PROCESSEDAXISCONFIG..., NextAxis_t>;
212 return HistImpl_t()(title, axes, processedAxisArgs..., nextAxis);
228 const std::array<RAxisConfig, NDIM> &axes,
229 PROCESSEDAXISCONFIG... processedAxisArgs)
231 switch (axes[IDIM].GetKind()) {
233 case RAxisConfig::kGrow:
return MakeNextAxis<RAxisConfig::kGrow>(title, axes, processedAxisArgs...);
242template <
int NDIM,
class DATA,
class... PROCESSEDAXISCONFIG>
247 std::unique_ptr<HistImplBase_t>
251 return std::make_unique<HistImplt_t>(title, axisArgs...);
256template <
int DIMENSIONS,
class PRECISION,
template <
int D_,
class P_>
class... STAT>
259 Internal::RHistImplGen<
RHist::GetNDim(), 0,
266template <
int DIMENSIONS,
class PRECISION,
template <
int D_,
class P_>
class... STAT>
271template <
int DIMENSIONS,
class PRECISION,
template <
int D_,
class P_>
class... STAT>
276 ret.fFillFunc = pHistImpl->GetFillFunc();
306template <
int DIMENSIONS,
class PRECISION_TO,
class PRECISION_FROM,
307 template <
int D_,
class P_>
class... STAT_TO,
308 template <
int D_,
class P_>
class... STAT_FROM>
313 using HistFrom_t =
RHist<DIMENSIONS, PRECISION_FROM, STAT_FROM...>;
315 using FromWeight_t =
typename HistFrom_t::Weight_t;
316 auto add = [fillFuncTo, toImpl](
const FromCoord_t &
x, FromWeight_t
c) {
317 (toImpl->*fillFuncTo)(
x,
c);
#define R__ERROR_HERE(GROUP)
Iterates over the bins of a RHist or RHistImpl.
Interface class for RHistImpl.
virtual void ApplyXC(std::function< void(const CoordArray_t &, Weight_t)>) const =0
Apply a function (lambda) to all bins of the histogram.
void(RHistImplBase::*)(const CoordArray_t &x, Weight_t w) FillFunc_t
Type of the Fill(x, w) function.
Hist::CoordArray_t< DATA::GetNDim()> CoordArray_t
Type of the coordinate: a DIMENSIONS-dimensional array of doubles.
virtual FillFunc_t GetFillFunc() const =0
Retrieve the pointer to the overridden Fill(x, w) function.
Hist::AxisIterRange_t< DIMENSIONS > AxisIterRange_t
Range type.
Objects used to configure the different axis types.
@ kGrow
represents a RAxisGrow
@ kEquidistant
represents a RAxisEquidistant
@ kIrregular
represents a RAxisIrregular
Histogram class for histograms with DIMENSIONS dimensions, where each bin count is stored by a value ...
ImplBase_t * GetImpl() const noexcept
Access the ImplBase_t this RHist points to.
static constexpr int GetNDim() noexcept
Number of dimensions of the coordinates.
PRECISION Weight_t
The type of weights.
Weight_t GetBinContent(const CoordArray_t &x) const
Get the content of the bin at x.
int64_t GetEntries() const noexcept
Get the number of entries this histogram was filled with.
double GetBinUncertainty(const CoordArray_t &x) const
Get the uncertainty on the content of the bin at x.
RHist(std::string_view histTitle, const RAxisConfig &xaxis, const RAxisConfig &yaxis)
Constructor overload that's only available for a 2-dimensional histogram, also passing the histogram ...
const_iterator end() const
RHist(const RAxisConfig &xaxis, const RAxisConfig &yaxis)
Constructor overload that's only available for a 2-dimensional histogram.
typename ImplBase_t::FillFunc_t FillFunc_t
Pointer type to HistImpl_t::Fill, for faster access.
RHist(const RAxisConfig &xaxis, const RAxisConfig &yaxis, const RAxisConfig &zaxis)
Constructor overload that's only available for a 3-dimensional histogram.
typename ImplBase_t::AxisIterRange_t AxisRange_t
Range.
void Fill(const CoordArray_t &x, Weight_t weight=(Weight_t) 1) noexcept
Add weight to the bin containing coordinate x.
RHist(std::string_view histTitle, std::array< RAxisConfig, DIMENSIONS > axes)
Constructor overload taking the histogram title.
Detail::RHistBinIter< ImplBase_t > const_iterator
void FillN(const std::span< CoordArray_t > xN) noexcept
Convenience overload: FillN() with weight 1.
const_iterator begin() const
RHist(std::string_view histTitle, const RAxisConfig &xaxis, const RAxisConfig &yaxis, const RAxisConfig &zaxis)
Constructor overload that's only available for a 3-dimensional histogram, also passing the histogram ...
void FillN(const std::span< CoordArray_t > xN, const std::span< Weight_t > weightN) noexcept
For each coordinate in xN, add weightN[i] to the bin at coordinate xN[i].
void swap(RHist< DIMENSIONS, PRECISION, STAT... > &other) noexcept
Swap *this and other.
std::unique_ptr< ImplBase_t > fImpl
The actual histogram implementation.
std::unique_ptr< ImplBase_t > TakeImpl() &&noexcept
"Steal" the ImplBase_t this RHist points to.
RHist(const RHist &other)
RHist(const RAxisConfig &xaxis)
Constructor overload that's only available for a 1-dimensional histogram.
RHist(std::array< RAxisConfig, DIMENSIONS > axes)
Create a histogram from an array of axes (RAxisConfigs).
FillFunc_t fFillFunc
! Pinter to RHistImpl::Fill() member function
typename ImplBase_t::CoordArray_t CoordArray_t
The coordinates type: a DIMENSIONS-dimensional std::array of double.
RHist(std::string_view histTitle, const RAxisConfig &xaxis)
Constructor overload that's only available for a 1-dimensional histogram, also passing the histogram ...
basic_string_view< char > string_view
RCoordArray< DIMENSIONS > CoordArray_t
class RHist< DIMENSIONS, PRECISION, STAT... > HistFromImpl(std::unique_ptr< typename RHist< DIMENSIONS, PRECISION, STAT... >::ImplBase_t > pHistImpl)
Adopt an external, stand-alone RHistImpl. The RHist will take ownership.
void Add(RHist< DIMENSIONS, PRECISION_TO, STAT_TO... > &to, const RHist< DIMENSIONS, PRECISION_FROM, STAT_FROM... > &from)
Add two histograms.
void swap(RHist< DIMENSIONS, PRECISION, STAT... > &a, RHist< DIMENSIONS, PRECISION, STAT... > &b) noexcept
Swap two histograms.
Namespace for new ROOT classes and functions.
Converts a RAxisConfig of whatever kind to the corresponding RAxisBase-derived object.
std::unique_ptr< HistImplBase_t > operator()(std::string_view title, const std::array< RAxisConfig, DATA::GetNDim()> &, PROCESSEDAXISCONFIG... axisArgs)
Generate RHist::fImpl from RHist constructor arguments.
std::unique_ptr< Detail::RHistImplBase< DATA > > MakeNextAxis(std::string_view title, const std::array< RAxisConfig, NDIM > &axes, PROCESSEDAXISCONFIG... processedAxisArgs)
Select the template argument for the next axis type, and "recurse" into RHistImplGen for the next axi...
std::unique_ptr< Detail::RHistImplBase< DATA > > operator()(std::string_view title, const std::array< RAxisConfig, NDIM > &axes, PROCESSEDAXISCONFIG... processedAxisArgs)
Make a RHistImpl-derived object reflecting the RAxisConfig array.