Public Methods |
virtual | ~IHistogram1D () |
virtual void | fill (double x, double weight=1)=0 |
| Fill histogram.
|
virtual int | binEntries (int index) const=0 |
| Number of entries in a specific in-range bin (number of fills).
|
virtual double | binHeight (int index) const=0 |
| Height of a specific in-range bin (height respects weights of entries).
|
virtual double | binError (int index) const=0 |
| Bin contents error.
|
virtual double | mean () const=0 |
| Returns the mean of the whole histogram as calculated on filling-time.
|
virtual double | rms () const=0 |
| Returns the rms of the whole histogram as calculated on filling-time.
|
virtual double | minBinHeight () const=0 |
| Min height of in-range bins in the whole histogram.
|
virtual int | minBin () const=0 |
| Index of the in-range bin containing the minBinHeight().
|
virtual double | maxBinHeight () const=0 |
| Max height of in-range bins in the whole histogram.
|
virtual int | maxBin () const=0 |
| Index of the in-range bin containing the maxBinHeight().
|
virtual IAxis * | xAxis () const=0 |
| Get the X axis.
|
virtual int | coordToIndex (double coord) const=0 |
| Equivalent to xAxis().coordToIndex( coord );.
|