YODA::LinBinEstimator Struct Reference Linear bin estimator. More...
Inheritance diagram for YODA::LinBinEstimator:
Detailed DescriptionLinear bin estimator. This class handles guessing a index bin with a hypothesis of uniformly spaced bins on a linear scale. Definition at line 48 of file BinEstimators.h. Constructor & Destructor Documentation◆ LinBinEstimator() [1/2]
Constructor. Definition at line 51 of file BinEstimators.h. 51 {
52 _N = nbins;
53 _c = xlow;
54 _m = (double) nbins / (xhigh - xlow);
55 }
◆ LinBinEstimator() [2/2]
Copy constructor. Definition at line 58 of file BinEstimators.h. 58 {
59 _N = other._N;
60 _c = other._c;
61 _m = other._m;
62 }
The documentation for this struct 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 |