Logo ROOT   6.16/01
Reference Guide
RHistImpl.hxx
Go to the documentation of this file.
1/// \file ROOT/RHistImpl.h
2/// \ingroup Hist ROOT7
3/// \author Axel Naumann <axel@cern.ch>
4/// \date 2015-03-23
5/// \warning This is part of the ROOT 7 prototype! It will change without notice. It might trigger earthquakes. Feedback
6/// is welcome!
7
8/*************************************************************************
9 * Copyright (C) 1995-2015, Rene Brun and Fons Rademakers. *
10 * All rights reserved. *
11 * *
12 * For the licensing terms see $ROOTSYS/LICENSE. *
13 * For the list of contributors see $ROOTSYS/README/CREDITS. *
14 *************************************************************************/
15
16#ifndef ROOT7_RHistImpl
17#define ROOT7_RHistImpl
18
19#include <cctype>
20#include <functional>
21#include "ROOT/RSpan.hxx"
22#include "ROOT/RTupleApply.hxx"
23
24#include "ROOT/RAxis.hxx"
25#include "ROOT/RHistBinIter.hxx"
26#include "ROOT/RHistUtils.hxx"
27
28class TRootIOCtor;
29
30namespace ROOT {
31namespace Experimental {
32
33template <int DIMENSIONS, class PRECISION, template <int D_, class P_> class... STAT>
34class RHist;
35
36namespace Hist {
37/// Iterator over n dimensional axes - an array of n axis iterators.
38template <int NDIM>
39using AxisIter_t = std::array<RAxisBase::const_iterator, NDIM>;
40/// Range over n dimensional axes - a pair of arrays of n axis iterators.
41template <int NDIM>
42using AxisIterRange_t = std::array<AxisIter_t<NDIM>, 2>;
43
44/// Kinds of under- and overflow handling.
45enum class EOverflow {
46 kNoOverflow = 0x0, ///< Exclude under- and overflows
47 kUnderflow = 0x1, ///< Include underflows
48 kOverflow = 0x2, ///< Include overflows
49 kUnderOver = 0x3, ///< Include both under- and overflows
50};
51
53{
54 return static_cast<int>(a) & static_cast<int>(b);
55}
56} // namespace Hist
57
58namespace Detail {
59
60/**
61 \class RHistImplPrecisionAgnosticBase
62 Base class for RHistImplBase that abstracts out the histogram's PRECISION.
63
64 For operations such as painting a histogram, the PRECISION (type of the bin
65 content) is not relevant; painting will cast the underlying bin type to double.
66 To facilitate this, RHistImplBase itself inherits from the
67 RHistImplPrecisionAgnosticBase interface.
68 */
69template <int DIMENSIONS>
71public:
72 /// Type of the coordinate: a DIMENSIONS-dimensional array of doubles.
74 /// Range type.
76
82
83 /// Number of dimensions of the coordinates
84 static constexpr int GetNDim() { return DIMENSIONS; }
85 /// Number of bins of this histogram, including all overflow and underflow
86 /// bins. Simply the product of all axes' number of bins.
87 virtual int GetNBins() const noexcept = 0;
88
89 /// Get the histogram title.
90 const std::string &GetTitle() const { return fTitle; }
91
92 /// Given the coordinate `x`, determine the index of the bin.
93 virtual int GetBinIndex(const CoordArray_t &x) const = 0;
94 /// Given the coordinate `x`, determine the index of the bin, possibly growing
95 /// axes for which `x` is out of range.
96 virtual int GetBinIndexAndGrow(const CoordArray_t &x) = 0;
97
98 /// Get the center in all dimensions of the bin with index `binidx`.
99 virtual CoordArray_t GetBinCenter(int binidx) const = 0;
100 /// Get the lower edge in all dimensions of the bin with index `binidx`.
101 virtual CoordArray_t GetBinFrom(int binidx) const = 0;
102 /// Get the upper edge in all dimensions of the bin with index `binidx`.
103 virtual CoordArray_t GetBinTo(int binidx) const = 0;
104
105 /// The bin's uncertainty. size() of the vector is a multiple of 2:
106 /// several kinds of uncertainty, same number of entries for lower and upper.
107 virtual double GetBinUncertainty(int binidx) const = 0;
108
109 /// Whether this histogram's statistics provide storage for uncertainties, or
110 /// whether uncertainties are determined as poisson uncertainty of the content.
111 virtual bool HasBinUncertainty() const = 0;
112
113 /// The bin content, cast to double.
114 virtual double GetBinContentAsDouble(int binidx) const = 0;
115
116 /// Get a RAxisView on axis with index iAxis.
117 ///
118 /// \param iAxis - index of the axis, must be 0 <= iAxis < DIMENSION
119 virtual RAxisView GetAxis(int iAxis) const = 0;
120
121 /// Get a AxisIterRange_t for the whole histogram, possibly restricting the
122 /// range to non-overflow bins.
123 ///
124 /// \param withOverUnder - specifies for each dimension whether under and
125 /// overflow should be included in the returned range.
126 virtual AxisIterRange_t GetRange(const std::array<Hist::EOverflow, DIMENSIONS> &withOverUnder) const = 0;
127
128private:
129 std::string fTitle; ///< Histogram title.
130};
131
132/**
133 \class RHistImplBase
134 Interface class for RHistImpl.
135
136 RHistImpl is templated for a specific configuration of axes. To enable access
137 through RHist, RHistImpl inherits from RHistImplBase, exposing only dimension
138 (`DIMENSION`) and bin type (`PRECISION`).
139 */
140template <class DATA>
141class RHistImplBase: public RHistImplPrecisionAgnosticBase<DATA::GetNDim()> {
142public:
143 /// Type of the statistics (bin content, uncertainties etc).
144 using Stat_t = DATA;
145 /// Type of the coordinate: a DIMENSIONS-dimensional array of doubles.
146 using CoordArray_t = Hist::CoordArray_t<DATA::GetNDim()>;
147 /// Type of the bin content (and thus weights).
148 using Weight_t = typename DATA::Weight_t;
149
150 /// Type of the Fill(x, w) function
152
153private:
154 /// The histogram's bin content, uncertainties etc.
156
157public:
158 RHistImplBase() = default;
159 RHistImplBase(size_t numBins): fStatistics(numBins) {}
160 RHistImplBase(std::string_view title, size_t numBins)
161 : RHistImplPrecisionAgnosticBase<DATA::GetNDim()>(title), fStatistics(numBins)
162 {}
163 RHistImplBase(const RHistImplBase &) = default;
165
166 virtual std::unique_ptr<RHistImplBase> Clone() const = 0;
167
168 /// Interface function to fill a vector or array of coordinates with
169 /// corresponding weights.
170 /// \note the size of `xN` and `weightN` must be the same!
171 virtual void FillN(const std::span<CoordArray_t> xN, const std::span<Weight_t> weightN) = 0;
172
173 /// Interface function to fill a vector or array of coordinates.
174 virtual void FillN(const std::span<CoordArray_t> xN) = 0;
175
176 /// Retrieve the pointer to the overridden Fill(x, w) function.
177 virtual FillFunc_t GetFillFunc() const = 0;
178
179 /// Apply a function (lambda) to all bins of the histogram. The function takes
180 /// the bin reference.
182
183 /// Apply a function (lambda) to all bins of the histogram. The function takes
184 /// the bin coordinate and content.
185 virtual void ApplyXC(std::function<void(const CoordArray_t &, Weight_t)>) const = 0;
186
187 /// Apply a function (lambda) to all bins of the histogram. The function takes
188 /// the bin coordinate, content and uncertainty ("error") of the content.
189 virtual void ApplyXCE(std::function<void(const CoordArray_t &, Weight_t, double)>) const = 0;
190
191 /// Get the bin content (sum of weights) for the bin at coordinate x.
192 virtual Weight_t GetBinContent(const CoordArray_t &x) const = 0;
193
195
196 /// Get the bin uncertainty for the bin at coordinate x.
197 virtual double GetBinUncertainty(const CoordArray_t &x) const = 0;
198
199 /// Get the number of bins in this histogram, including possible under- and
200 /// overflow bins.
201 int GetNBins() const noexcept final { return fStatistics.size(); }
202
203 /// Get the bin content (sum of weights) for bin index `binidx`.
204 Weight_t GetBinContent(int binidx) const { return fStatistics[binidx]; }
205
206 /// Get the bin content (sum of weights) for bin index `binidx` (non-const).
207 Weight_t &GetBinContent(int binidx) { return fStatistics[binidx]; }
208
209 /// Const access to statistics.
210 const Stat_t &GetStat() const noexcept { return fStatistics; }
211
212 /// Non-const access to statistics.
213 Stat_t &GetStat() noexcept { return fStatistics; }
214
215 /// Get the bin content (sum of weights) for bin index `binidx`, cast to
216 /// double.
217 double GetBinContentAsDouble(int binidx) const final { return (double)GetBinContent(binidx); }
218
219 /// Add `w` to the bin at index `bin`.
220 void AddBinContent(int binidx, Weight_t w) { fStatistics[binidx] += w; }
221};
222} // namespace Detail
223
224namespace Internal {
225/** \name Histogram traits
226 Helper traits for histogram operations.
227 */
228///\{
229
230/// \name Axis tuple operations
231/// Template operations on axis tuple.
232///@{
233template <int IDX, class AXISTUPLE>
234struct RGetBinCount;
235
236template <class AXES>
237struct RGetBinCount<0, AXES> {
238 int operator()(const AXES &axes) const { return std::get<0>(axes).GetNBins(); }
239};
240
241template <int I, class AXES>
243 int operator()(const AXES &axes) const { return std::get<I>(axes).GetNBins() * RGetBinCount<I - 1, AXES>()(axes); }
244};
245
246template <class... AXISCONFIG>
247int GetNBinsFromAxes(AXISCONFIG... axisArgs)
248{
249 using axesTuple = std::tuple<AXISCONFIG...>;
250 return RGetBinCount<sizeof...(AXISCONFIG) - 1, axesTuple>()(axesTuple{axisArgs...});
251}
252
253template <int IDX, class HISTIMPL, class AXES, bool GROW>
254struct RGetBinIndex;
255
256// Break recursion
257template <class HISTIMPL, class AXES, bool GROW>
258struct RGetBinIndex<-1, HISTIMPL, AXES, GROW> {
259 int operator()(HISTIMPL *, const AXES &, const typename HISTIMPL::CoordArray_t &,
260 RAxisBase::EFindStatus &status) const
261 {
263 return 0;
264 }
265};
266
267template <int I, class HISTIMPL, class AXES, bool GROW>
269 int operator()(HISTIMPL *hist, const AXES &axes, const typename HISTIMPL::CoordArray_t &x,
270 RAxisBase::EFindStatus &status) const
271 {
272 constexpr const int thisAxis = HISTIMPL::GetNDim() - I - 1;
273 int bin = std::get<thisAxis>(axes).FindBin(x[thisAxis]);
274 if (GROW && std::get<thisAxis>(axes).CanGrow() && (bin < 0 || bin > std::get<thisAxis>(axes).GetNBinsNoOver())) {
275 hist->GrowAxis(I, x[thisAxis]);
277
278 // Abort bin calculation; we don't care. Let RHist::GetBinIndex() retry!
279 return bin;
280 }
281 return bin +
282 RGetBinIndex<I - 1, HISTIMPL, AXES, GROW>()(hist, axes, x, status) * std::get<thisAxis>(axes).GetNBins();
283 }
284};
285
286template <int I, class AXES>
287struct RFillIterRange;
288
289// Break recursion.
290template <class AXES>
291struct RFillIterRange<-1, AXES> {
292 void operator()(Hist::AxisIterRange_t<std::tuple_size<AXES>::value> & /*range*/, const AXES & /*axes*/,
293 const std::array<Hist::EOverflow, std::tuple_size<AXES>::value> & /*over*/) const
294 {}
295};
296
297/** Fill `range` with begin() and end() of all axes, including under/overflow
298 as specified by `over`.
299*/
300template <int I, class AXES>
302 void operator()(Hist::AxisIterRange_t<std::tuple_size<AXES>::value> &range, const AXES &axes,
303 const std::array<Hist::EOverflow, std::tuple_size<AXES>::value> &over) const
304 {
305 if (over[I] & Hist::EOverflow::kUnderflow)
306 range[0][I] = std::get<I>(axes).begin_with_underflow();
307 else
308 range[0][I] = std::get<I>(axes).begin();
309 if (over[I] & Hist::EOverflow::kOverflow)
310 range[1][I] = std::get<I>(axes).end_with_overflow();
311 else
312 range[1][I] = std::get<I>(axes).end();
313 RFillIterRange<I - 1, AXES>()(range, axes, over);
314 }
315};
316
317enum class EBinCoord {
318 kBinFrom, ///< Get the lower bin edge
319 kBinCenter, ///< Get the bin center
320 kBinTo ///< Get the bin high edge
321};
322
323template <int I, class COORD, class AXES>
324struct RFillBinCoord;
325
326// Break recursion.
327template <class COORD, class AXES>
328struct RFillBinCoord<-1, COORD, AXES> {
329 void operator()(COORD & /*coord*/, const AXES & /*axes*/, EBinCoord /*kind*/, int /*binidx*/) const {}
330};
331
332/** Fill `coord` with low bin edge or center or high bin edge of all axes.
333 */
334template <int I, class COORD, class AXES>
336 void operator()(COORD &coord, const AXES &axes, EBinCoord kind, int binidx) const
337 {
338 int axisbin = binidx % std::get<I>(axes).GetNBins();
339 size_t coordidx = std::tuple_size<AXES>::value - I - 1;
340 switch (kind) {
341 case EBinCoord::kBinFrom: coord[coordidx] = std::get<I>(axes).GetBinFrom(axisbin); break;
342 case EBinCoord::kBinCenter: coord[coordidx] = std::get<I>(axes).GetBinCenter(axisbin); break;
343 case EBinCoord::kBinTo: coord[coordidx] = std::get<I>(axes).GetBinTo(axisbin); break;
344 }
345 RFillBinCoord<I - 1, COORD, AXES>()(coord, axes, kind, binidx / std::get<I>(axes).GetNBins());
346 }
347};
348
349template <class... AXISCONFIG>
350static std::array<RAxisView, sizeof...(AXISCONFIG)> GetAxisView(const AXISCONFIG &... axes) noexcept
351{
352 std::array<RAxisView, sizeof...(AXISCONFIG)> axisViews = {{RAxisView(axes)...}};
353 return axisViews;
354}
355
356///\}
357} // namespace Internal
358
359namespace Detail {
360
361template <class DATA, class... AXISCONFIG>
362class RHistImpl final: public RHistImplBase<DATA> {
363 static_assert(sizeof...(AXISCONFIG) == DATA::GetNDim(), "Number of axes must equal histogram dimension");
364
365 friend typename DATA::Hist_t;
366
367public:
371 using typename ImplBase_t::FillFunc_t;
372 template <int NDIM = DATA::GetNDim()>
374
375private:
376 std::tuple<AXISCONFIG...> fAxes; ///< The histogram's axes
377
378public:
380 RHistImpl(AXISCONFIG... axisArgs);
381 RHistImpl(std::string_view title, AXISCONFIG... axisArgs);
382
383 std::unique_ptr<ImplBase_t> Clone() const override {
384 return std::unique_ptr<ImplBase_t>(new RHistImpl(*this));
385 }
386
387 /// Retrieve the fill function for this histogram implementation, to prevent
388 /// the virtual function call for high-frequency fills.
390
391 /// Apply a function (lambda) to all bins of the histogram. The function takes
392 /// the bin reference.
394 {
395 for (RHistBinRef<const ImplBase_t> binref: *this)
396 op(binref);
397 }
398
399 /// Apply a function (lambda) to all bins of the histogram. The function takes
400 /// the bin coordinate and content.
401 void ApplyXC(std::function<void(const CoordArray_t &, Weight_t)> op) const final
402 {
403 for (auto binref: *this)
404 op(binref.GetCenter(), binref.GetContent());
405 }
406
407 /// Apply a function (lambda) to all bins of the histogram. The function takes
408 /// the bin coordinate, content and uncertainty ("error") of the content.
409 virtual void ApplyXCE(std::function<void(const CoordArray_t &, Weight_t, double)> op) const final
410 {
411 for (auto binref: *this)
412 op(binref.GetCenter(), binref.GetContent(), binref.GetUncertainty());
413 }
414
415 /// Get the axes of this histogram.
416 const std::tuple<AXISCONFIG...> &GetAxes() const { return fAxes; }
417
418 /// Normalized axes access, converting the actual axis to RAxisConfig
419 RAxisView GetAxis(int iAxis) const final { return std::apply(Internal::GetAxisView<AXISCONFIG...>, fAxes)[iAxis]; }
420
421 /// Gets the bin index for coordinate `x`; returns -1 if there is no such bin,
422 /// e.g. for axes without over / underflow but coordinate out of range.
423 int GetBinIndex(const CoordArray_t &x) const final
424 {
426 int ret =
427 Internal::RGetBinIndex<DATA::GetNDim() - 1, RHistImpl, decltype(fAxes), false>()(nullptr, fAxes, x, status);
428 if (status != RAxisBase::EFindStatus::kValid)
429 return -1;
430 return ret;
431 }
432
433 /// Gets the bin index for coordinate `x`, growing the axes as needed and
434 /// possible. Returns -1 if there is no such bin,
435 /// e.g. for axes without over / underflow but coordinate out of range.
437 {
439 int ret = -1;
440 while (status == RAxisBase::EFindStatus::kCanGrow) {
441 ret = Internal::RGetBinIndex<DATA::GetNDim() - 1, RHistImpl, decltype(fAxes), true>()(this, fAxes, x, status);
442 }
443 return ret;
444 }
445
446 /// Get the center coordinate of the bin.
447 CoordArray_t GetBinCenter(int binidx) const final
448 {
449 using RFillBinCoord = Internal::RFillBinCoord<DATA::GetNDim() - 1, CoordArray_t, decltype(fAxes)>;
450 CoordArray_t coord;
451 RFillBinCoord()(coord, fAxes, Internal::EBinCoord::kBinCenter, binidx);
452 return coord;
453 }
454
455 /// Get the coordinate of the low limit of the bin.
456 CoordArray_t GetBinFrom(int binidx) const final
457 {
458 using RFillBinCoord = Internal::RFillBinCoord<DATA::GetNDim() - 1, CoordArray_t, decltype(fAxes)>;
459 CoordArray_t coord;
460 RFillBinCoord()(coord, fAxes, Internal::EBinCoord::kBinFrom, binidx);
461 return coord;
462 }
463
464 /// Get the coordinate of the high limit of the bin.
465 CoordArray_t GetBinTo(int binidx) const final
466 {
467 using RFillBinCoord = Internal::RFillBinCoord<DATA::GetNDim() - 1, CoordArray_t, decltype(fAxes)>;
468 CoordArray_t coord;
469 RFillBinCoord()(coord, fAxes, Internal::EBinCoord::kBinTo, binidx);
470 return coord;
471 }
472
473 /// Fill an array of `weightN` to the bins specified by coordinates `xN`.
474 /// For each element `i`, the weight `weightN[i]` will be added to the bin
475 /// at the coordinate `xN[i]`
476 /// \note `xN` and `weightN` must have the same size!
477 void FillN(const std::span<CoordArray_t> xN, const std::span<Weight_t> weightN) final
478 {
479#ifndef NDEBUG
480 if (xN.size() != weightN.size()) {
481 R__ERROR_HERE("HIST") << "Not the same number of points and weights!";
482 return;
483 }
484#endif
485
486 for (size_t i = 0; i < xN.size(); ++i) {
487 Fill(xN[i], weightN[i]);
488 }
489 }
490
491 /// Fill an array of `weightN` to the bins specified by coordinates `xN`.
492 /// For each element `i`, the weight `weightN[i]` will be added to the bin
493 /// at the coordinate `xN[i]`
494 void FillN(const std::span<CoordArray_t> xN) final
495 {
496 for (auto &&x: xN) {
497 Fill(x);
498 }
499 }
500
501 /// Add a single weight `w` to the bin at coordinate `x`.
502 void Fill(const CoordArray_t &x, Weight_t w = 1.)
503 {
504 int bin = GetBinIndexAndGrow(x);
505 this->GetStat().Fill(x, bin, w);
506 }
507
508 /// Get the content of the bin at position `x`.
510 {
511 int bin = GetBinIndex(x);
512 if (bin >= 0)
513 return ImplBase_t::GetBinContent(bin);
514 return 0.;
515 }
516
517 /// Return the uncertainties for the given bin.
518 double GetBinUncertainty(int binidx) const final { return this->GetStat().GetBinUncertainty(binidx); }
519
520 /// Get the bin uncertainty for the bin at coordinate x.
521 double GetBinUncertainty(const CoordArray_t &x) const final
522 {
523 const int bin = GetBinIndex(x);
524 return this->GetBinUncertainty(bin);
525 }
526
527 /// Whether this histogram's statistics provide storage for uncertainties, or
528 /// whether uncertainties are determined as poisson uncertainty of the content.
529 bool HasBinUncertainty() const final { return this->GetStat().HasBinUncertainty(); }
530
531 /// Get the begin() and end() for each axis.
532 ///
533 ///\param[in] withOverUnder - Whether the begin and end should contain over-
534 /// or underflow. Ignored if the axis does not support over- / underflow.
535 AxisIterRange_t<DATA::GetNDim()>
536 GetRange(const std::array<Hist::EOverflow, DATA::GetNDim()> &withOverUnder) const final
537 {
538 std::array<std::array<RAxisBase::const_iterator, DATA::GetNDim()>, 2> ret;
539 Internal::RFillIterRange<DATA::GetNDim() - 1, decltype(fAxes)>()(ret, fAxes, withOverUnder);
540 return ret;
541 }
542
543 /// Grow the axis number `iAxis` to fit the coordinate `x`.
544 ///
545 /// The histogram (conceptually) combines pairs of bins along this axis until
546 /// `x` is within the range of the axis.
547 /// The axis must support growing for this to work (e.g. a `RAxisGrow`).
548 void GrowAxis(int /*iAxis*/, double /*x*/)
549 {
550 // RODO: Implement GrowAxis()
551 }
552
553 /// \{
554 /// \name Iterator interface
557 iterator begin() noexcept { return iterator(*this); }
558 const_iterator begin() const noexcept { return const_iterator(*this); }
559 iterator end() noexcept { return iterator(*this, this->GetNBins()); }
560 const_iterator end() const noexcept { return const_iterator(*this, this->GetNBins()); }
561 /// \}
562};
563
564template <class DATA, class... AXISCONFIG>
566{}
567
568template <class DATA, class... AXISCONFIG>
570 : ImplBase_t(Internal::GetNBinsFromAxes(axisArgs...)), fAxes{axisArgs...}
571{}
572
573template <class DATA, class... AXISCONFIG>
575 : ImplBase_t(title, Internal::GetNBinsFromAxes(axisArgs...)), fAxes{axisArgs...}
576{}
577
578#if 0
579// In principle we can also have a runtime version of RHistImpl, that does not
580// contain a tuple of concrete axis types but a vector of `RAxisConfig`.
581template <class DATA>
582class RHistImplRuntime: public RHistImplBase<DATA> {
583public:
584 RHistImplRuntime(std::array<RAxisConfig, DATA::GetNDim()>&& axisCfg);
585};
586#endif
587
588} // namespace Detail
589
590} // namespace Experimental
591} // namespace ROOT
592
593#endif
#define b(i)
Definition: RSha256.hxx:100
#define R__ERROR_HERE(GROUP)
Definition: TLogger.hxx:182
typedef void((*Func_t)())
Iterates over the bins of a RHist or RHistImpl.
Represents a bin reference.
Interface class for RHistImpl.
Definition: RHistImpl.hxx:141
Weight_t & GetBinContent(int binidx)
Get the bin content (sum of weights) for bin index binidx (non-const).
Definition: RHistImpl.hxx:207
RHistImplBase(const RHistImplBase &)=default
virtual void ApplyXC(std::function< void(const CoordArray_t &, Weight_t)>) const =0
Apply a function (lambda) to all bins of the histogram.
virtual void FillN(const std::span< CoordArray_t > xN)=0
Interface function to fill a vector or array of coordinates.
void(RHistImplBase::*)(const CoordArray_t &x, Weight_t w) FillFunc_t
Type of the Fill(x, w) function.
Definition: RHistImpl.hxx:151
virtual double GetBinUncertainty(const CoordArray_t &x) const =0
Get the bin uncertainty for the bin at coordinate x.
void AddBinContent(int binidx, Weight_t w)
Add w to the bin at index bin.
Definition: RHistImpl.hxx:220
RHistImplBase(RHistImplBase &&)=default
Hist::CoordArray_t< DATA::GetNDim()> CoordArray_t
Type of the coordinate: a DIMENSIONS-dimensional array of doubles.
Definition: RHistImpl.hxx:146
virtual std::unique_ptr< RHistImplBase > Clone() const =0
DATA Stat_t
Type of the statistics (bin content, uncertainties etc).
Definition: RHistImpl.hxx:144
Stat_t & GetStat() noexcept
Non-const access to statistics.
Definition: RHistImpl.hxx:213
RHistImplBase(std::string_view title, size_t numBins)
Definition: RHistImpl.hxx:160
Weight_t GetBinContent(int binidx) const
Get the bin content (sum of weights) for bin index binidx.
Definition: RHistImpl.hxx:204
const Stat_t & GetStat() const noexcept
Const access to statistics.
Definition: RHistImpl.hxx:210
Stat_t fStatistics
The histogram's bin content, uncertainties etc.
Definition: RHistImpl.hxx:155
virtual void FillN(const std::span< CoordArray_t > xN, const std::span< Weight_t > weightN)=0
Interface function to fill a vector or array of coordinates with corresponding weights.
virtual Weight_t GetBinContent(const CoordArray_t &x) const =0
Get the bin content (sum of weights) for the bin at coordinate x.
virtual void Apply(std::function< void(RHistBinRef< const RHistImplBase >)>) const =0
Apply a function (lambda) to all bins of the histogram.
double GetBinContentAsDouble(int binidx) const final
Get the bin content (sum of weights) for bin index binidx, cast to double.
Definition: RHistImpl.hxx:217
int GetNBins() const noexcept final
Get the number of bins in this histogram, including possible under- and overflow bins.
Definition: RHistImpl.hxx:201
virtual void ApplyXCE(std::function< void(const CoordArray_t &, Weight_t, double)>) const =0
Apply a function (lambda) to all bins of the histogram.
typename DATA::Weight_t Weight_t
Type of the bin content (and thus weights).
Definition: RHistImpl.hxx:148
virtual FillFunc_t GetFillFunc() const =0
Retrieve the pointer to the overridden Fill(x, w) function.
Base class for RHistImplBase that abstracts out the histogram's PRECISION.
Definition: RHistImpl.hxx:70
virtual int GetBinIndexAndGrow(const CoordArray_t &x)=0
Given the coordinate x, determine the index of the bin, possibly growing axes for which x is out of r...
virtual int GetBinIndex(const CoordArray_t &x) const =0
Given the coordinate x, determine the index of the bin.
virtual RAxisView GetAxis(int iAxis) const =0
Get a RAxisView on axis with index iAxis.
RHistImplPrecisionAgnosticBase(RHistImplPrecisionAgnosticBase &&)=default
virtual int GetNBins() const noexcept=0
Number of bins of this histogram, including all overflow and underflow bins.
virtual bool HasBinUncertainty() const =0
Whether this histogram's statistics provide storage for uncertainties, or whether uncertainties are d...
virtual AxisIterRange_t GetRange(const std::array< Hist::EOverflow, DIMENSIONS > &withOverUnder) const =0
Get a AxisIterRange_t for the whole histogram, possibly restricting the range to non-overflow bins.
virtual CoordArray_t GetBinTo(int binidx) const =0
Get the upper edge in all dimensions of the bin with index binidx.
RHistImplPrecisionAgnosticBase(const RHistImplPrecisionAgnosticBase &)=default
const std::string & GetTitle() const
Get the histogram title.
Definition: RHistImpl.hxx:90
Hist::AxisIterRange_t< DIMENSIONS > AxisIterRange_t
Range type.
Definition: RHistImpl.hxx:75
static constexpr int GetNDim()
Number of dimensions of the coordinates.
Definition: RHistImpl.hxx:84
virtual double GetBinUncertainty(int binidx) const =0
The bin's uncertainty.
virtual double GetBinContentAsDouble(int binidx) const =0
The bin content, cast to double.
virtual CoordArray_t GetBinCenter(int binidx) const =0
Get the center in all dimensions of the bin with index binidx.
virtual CoordArray_t GetBinFrom(int binidx) const =0
Get the lower edge in all dimensions of the bin with index binidx.
void Fill(const CoordArray_t &x, Weight_t w=1.)
Add a single weight w to the bin at coordinate x.
Definition: RHistImpl.hxx:502
int GetBinIndexAndGrow(const CoordArray_t &x) final
Gets the bin index for coordinate x, growing the axes as needed and possible.
Definition: RHistImpl.hxx:436
const_iterator end() const noexcept
Definition: RHistImpl.hxx:560
void ApplyXC(std::function< void(const CoordArray_t &, Weight_t)> op) const final
Apply a function (lambda) to all bins of the histogram.
Definition: RHistImpl.hxx:401
double GetBinUncertainty(const CoordArray_t &x) const final
Get the bin uncertainty for the bin at coordinate x.
Definition: RHistImpl.hxx:521
const_iterator begin() const noexcept
Definition: RHistImpl.hxx:558
CoordArray_t GetBinCenter(int binidx) const final
Get the center coordinate of the bin.
Definition: RHistImpl.hxx:447
void FillN(const std::span< CoordArray_t > xN, const std::span< Weight_t > weightN) final
Fill an array of weightN to the bins specified by coordinates xN.
Definition: RHistImpl.hxx:477
FillFunc_t GetFillFunc() const final
Retrieve the fill function for this histogram implementation, to prevent the virtual function call fo...
Definition: RHistImpl.hxx:389
std::tuple< AXISCONFIG... > fAxes
The histogram's axes.
Definition: RHistImpl.hxx:376
void Apply(std::function< void(RHistBinRef< const ImplBase_t >)> op) const final
Apply a function (lambda) to all bins of the histogram.
Definition: RHistImpl.hxx:393
void GrowAxis(int, double)
Grow the axis number iAxis to fit the coordinate x.
Definition: RHistImpl.hxx:548
Weight_t GetBinContent(const CoordArray_t &x) const final
Get the content of the bin at position x.
Definition: RHistImpl.hxx:509
int GetBinIndex(const CoordArray_t &x) const final
Gets the bin index for coordinate x; returns -1 if there is no such bin, e.g.
Definition: RHistImpl.hxx:423
void FillN(const std::span< CoordArray_t > xN) final
Fill an array of weightN to the bins specified by coordinates xN.
Definition: RHistImpl.hxx:494
AxisIterRange_t< DATA::GetNDim()> GetRange(const std::array< Hist::EOverflow, DATA::GetNDim()> &withOverUnder) const final
Get the begin() and end() for each axis.
Definition: RHistImpl.hxx:536
double GetBinUncertainty(int binidx) const final
Return the uncertainties for the given bin.
Definition: RHistImpl.hxx:518
bool HasBinUncertainty() const final
Whether this histogram's statistics provide storage for uncertainties, or whether uncertainties are d...
Definition: RHistImpl.hxx:529
std::unique_ptr< ImplBase_t > Clone() const override
Definition: RHistImpl.hxx:383
RHistBinIter< ImplBase_t > iterator
Definition: RHistImpl.hxx:556
virtual void ApplyXCE(std::function< void(const CoordArray_t &, Weight_t, double)> op) const final
Apply a function (lambda) to all bins of the histogram.
Definition: RHistImpl.hxx:409
typename Hist::AxisIterRange_t< NDIM > AxisIterRange_t
Definition: RHistImpl.hxx:373
const std::tuple< AXISCONFIG... > & GetAxes() const
Get the axes of this histogram.
Definition: RHistImpl.hxx:416
RAxisView GetAxis(int iAxis) const final
Normalized axes access, converting the actual axis to RAxisConfig.
Definition: RHistImpl.hxx:419
CoordArray_t GetBinTo(int binidx) const final
Get the coordinate of the high limit of the bin.
Definition: RHistImpl.hxx:465
CoordArray_t GetBinFrom(int binidx) const final
Get the coordinate of the low limit of the bin.
Definition: RHistImpl.hxx:456
RHistBinIter< const ImplBase_t > const_iterator
Definition: RHistImpl.hxx:555
typename ImplBase_t::CoordArray_t CoordArray_t
Definition: RHistImpl.hxx:369
Random const_iterator through bins.
Definition: RAxis.hxx:92
EFindStatus
Status of FindBin(x)
Definition: RAxis.hxx:45
@ kValid
The returned bin index is valid.
@ kCanGrow
Coordinate could fit after growing the axis.
Objects used to configure the different axis types.
Definition: RAxis.hxx:300
Common view on a RAxis, no matter what its kind.
Definition: RAxis.hxx:836
Double_t x[n]
Definition: legend1.C:17
#define I(x, y, z)
EOverflow
Kinds of under- and overflow handling.
Definition: RHistImpl.hxx:45
@ kNoOverflow
Exclude under- and overflows.
@ kUnderOver
Include both under- and overflows.
std::array< AxisIter_t< NDIM >, 2 > AxisIterRange_t
Range over n dimensional axes - a pair of arrays of n axis iterators.
Definition: RHistImpl.hxx:42
std::array< RAxisBase::const_iterator, NDIM > AxisIter_t
Iterator over n dimensional axes - an array of n axis iterators.
Definition: RHistImpl.hxx:39
bool operator&(EOverflow a, EOverflow b)
Definition: RHistImpl.hxx:52
RCoordArray< DIMENSIONS > CoordArray_t
Definition: RHistUtils.hxx:49
int GetNBinsFromAxes(AXISCONFIG... axisArgs)
Definition: RHistImpl.hxx:247
@ kBinFrom
Get the lower bin edge.
static std::array< RAxisView, sizeof...(AXISCONFIG)> GetAxisView(const AXISCONFIG &... axes) noexcept
Definition: RHistImpl.hxx:350
void function(const Char_t *name_, T fun, const Char_t *docstring=0)
Definition: RExports.h:151
Namespace for new ROOT classes and functions.
Definition: StringConv.hxx:21
constexpr decltype(auto) apply(F &&f, Tuple &&t)
STL namespace.
basic_string_view< char > string_view
Definition: RStringView.hxx:35
void operator()(COORD &, const AXES &, EBinCoord, int) const
Definition: RHistImpl.hxx:329
Fill coord with low bin edge or center or high bin edge of all axes.
Definition: RHistImpl.hxx:335
void operator()(COORD &coord, const AXES &axes, EBinCoord kind, int binidx) const
Definition: RHistImpl.hxx:336
void operator()(Hist::AxisIterRange_t< std::tuple_size< AXES >::value > &, const AXES &, const std::array< Hist::EOverflow, std::tuple_size< AXES >::value > &) const
Definition: RHistImpl.hxx:292
Fill range with begin() and end() of all axes, including under/overflow as specified by over.
Definition: RHistImpl.hxx:301
void operator()(Hist::AxisIterRange_t< std::tuple_size< AXES >::value > &range, const AXES &axes, const std::array< Hist::EOverflow, std::tuple_size< AXES >::value > &over) const
Definition: RHistImpl.hxx:302
int operator()(const AXES &axes) const
Definition: RHistImpl.hxx:243
int operator()(HISTIMPL *, const AXES &, const typename HISTIMPL::CoordArray_t &, RAxisBase::EFindStatus &status) const
Definition: RHistImpl.hxx:259
int operator()(HISTIMPL *hist, const AXES &axes, const typename HISTIMPL::CoordArray_t &x, RAxisBase::EFindStatus &status) const
Definition: RHistImpl.hxx:269
auto * a
Definition: textangle.C:12