YODA::LogBinEstimator Class Reference Logarithmic bin estimator. More...
Inheritance diagram for YODA::LogBinEstimator:
Detailed DescriptionLogarithmic bin estimator. This class handles guessing a bin index with a hypothesis of uniformly spaced bins on a logarithmic scale.
Definition at line 81 of file BinEstimators.h. Constructor & Destructor Documentation◆ LogBinEstimator() [1/2]
Constructor. Definition at line 85 of file BinEstimators.h. 85 {
86 _N = nbins;
87 _c = log2(xlow);
88 _m = nbins / (log2(xhigh) - _c);
89 }
◆ LogBinEstimator() [2/2]
Copy constructor. Definition at line 92 of file BinEstimators.h. 92 {
93 _N = other._N;
94 _c = other._c;
95 _m = other._m;
96 }
The documentation for this class was generated from the following file:
Generated on Mon Oct 28 2024 13:47:24 for YODA - Yet more Objects for Data Analysis by 1.9.8 |