#include <NUHistoAxis.h>
Public Member Functions | |
double | binCenter (const int binNum) const |
Interval< double > | binInterval (const int binNum) const |
int | binNumber (double x) const |
unsigned | closestValidBin (double x) const |
double | fltBinNumber (double x, bool mapLeftEdgeTo0=true) const |
bool | isClose (const NUHistoAxis &, double tol) const |
double | leftBinEdge (const int binNum) const |
NUHistoAxis (const std::vector< double > &binEdges, const char *label=0) | |
bool | operator!= (const NUHistoAxis &) const |
bool | operator== (const NUHistoAxis &) const |
double | rightBinEdge (const int binNum) const |
void | setLabel (const char *newlabel) |
double | min () const |
double | max () const |
Interval< double > | interval () const |
double | length () const |
unsigned | nBins () const |
double | binWidth (const int binNum) const |
const std::string & | label () const |
bool | isUniform () const |
gs::ClassId | classId () const |
bool | write (std::ostream &of) const |
Static Public Member Functions | |
static const char * | classname () |
static NUHistoAxis * | read (const gs::ClassId &id, std::istream &in) |
static unsigned | version () |
Private Member Functions | |
NUHistoAxis () | |
NUHistoAxis (unsigned nBins, double min, double max, const char *label=0) | |
unsigned | overflowIndex (const double x, unsigned *binNum) const |
Private Attributes | |
std::vector< double > | binEdges_ |
std::string | label_ |
double | max_ |
double | min_ |
unsigned | nBins_ |
bool | uniform_ |
Friends | |
class | DualHistoAxis |
template<typename Numeric , class Axis > | |
class | HistoND |
This class can be used to create histograms with non-uniform binning
Definition at line 27 of file NUHistoAxis.h.
npstat::NUHistoAxis::NUHistoAxis | ( | const std::vector< double > & | binEdges, |
const char * | label = 0 |
||
) |
The number of bin edges provided must be at least 2. Edge coordinates will be sorted internally in the increasing order. The number of bins will be less by 1 than the number of edges.
Definition at line 15 of file NUHistoAxis.cc.
References binEdges_, label_, max_, min_, nBins_, python.multivaluedict::sort(), and AlCaHLTBitMon_QueryRunRegistry::string.
|
inlineprivate |
|
private |
Definition at line 29 of file NUHistoAxis.cc.
References binEdges_, label_, max_, min_, nBins_, AlCaHLTBitMon_QueryRunRegistry::string, and std::swap().
|
inline |
Return the coordinate of the given bin center
Definition at line 61 of file NUHistoAxis.h.
References binEdges_.
Referenced by npstat::DualHistoAxis::binCenter(), npstat::convertToGridAxis(), and fltBinNumber().
|
inline |
Return the coordinate interval occupied by the given bin
Definition at line 65 of file NUHistoAxis.h.
References binEdges_.
Referenced by npstat::DualHistoAxis::binInterval().
int npstat::NUHistoAxis::binNumber | ( | double | x | ) | const |
This method returns -1 for values below the lower limit and "nBins()" for values equal to or above the upper limit
Definition at line 73 of file NUHistoAxis.cc.
References binEdges_, delta, and x.
Referenced by npstat::DualHistoAxis::binNumber(), and overflowIndex().
|
inline |
Definition at line 46 of file NUHistoAxis.h.
References binEdges_.
Referenced by npstat::DualHistoAxis::binWidth().
|
inline |
Method related to "geners" I/O
Definition at line 99 of file NUHistoAxis.h.
Referenced by npstat::DualHistoAxis::write().
|
inlinestatic |
Definition at line 103 of file NUHistoAxis.h.
unsigned npstat::NUHistoAxis::closestValidBin | ( | double | x | ) | const |
This method returns the closest valid bin number (above 0 and below nBins() )
Definition at line 137 of file NUHistoAxis.cc.
References binEdges_, delta, nBins_, and x.
Referenced by npstat::DualHistoAxis::closestValidBin().
double npstat::NUHistoAxis::fltBinNumber | ( | double | x, |
bool | mapLeftEdgeTo0 = true |
||
) | const |
Floating point bin number given the coordinate. Useful for interpolation methods and such.
Definition at line 80 of file NUHistoAxis.cc.
References binCenter(), binEdges_, delta, nBins_, and x.
Referenced by npstat::DualHistoAxis::fltBinNumber().
|
inline |
bool npstat::NUHistoAxis::isClose | ( | const NUHistoAxis & | r, |
double | tol | ||
) | const |
Comparison of axis coordinates within given tolerance
Definition at line 44 of file NUHistoAxis.cc.
References binEdges_, npstat::closeWithinTolerance(), i, label_, max_, min_, nBins_, and uniform_.
Referenced by npstat::DualHistoAxis::isClose().
|
inline |
|
inline |
Definition at line 48 of file NUHistoAxis.h.
References label_.
Referenced by npstat::convertToGridAxis(), npstat::DualHistoAxis::label(), and read().
|
inline |
Return the coordinate of the given bin left edge
Definition at line 53 of file NUHistoAxis.h.
References binEdges_.
Referenced by npstat::DualHistoAxis::leftBinEdge().
|
inline |
|
inline |
Definition at line 41 of file NUHistoAxis.h.
References max_.
Referenced by npstat::DualHistoAxis::max().
|
inline |
Examine axis propoerties
Definition at line 40 of file NUHistoAxis.h.
References min_.
Referenced by npstat::DualHistoAxis::min().
|
inline |
Definition at line 45 of file NUHistoAxis.h.
References nBins_.
Referenced by npstat::convertToGridAxis(), and npstat::DualHistoAxis::nBins().
bool npstat::NUHistoAxis::operator!= | ( | const NUHistoAxis & | r | ) | const |
Definition at line 68 of file NUHistoAxis.cc.
References alignCSCRings::r.
bool npstat::NUHistoAxis::operator== | ( | const NUHistoAxis & | r | ) | const |
|
inlineprivate |
Definition at line 124 of file NUHistoAxis.h.
References binNumber(), max_, and min_.
Referenced by npstat::DualHistoAxis::overflowIndex().
|
static |
Definition at line 158 of file NUHistoAxis.cc.
References cond::rpcobimon::current, label(), NUHistoAxis(), query::result, AlCaHLTBitMon_QueryRunRegistry::string, and uniform_.
Referenced by npstat::DualHistoAxis::read().
|
inline |
Return the coordinate of the given bin right edge
Definition at line 57 of file NUHistoAxis.h.
References binEdges_.
Referenced by npstat::DualHistoAxis::rightBinEdge().
|
inline |
Change the axis label
Definition at line 70 of file NUHistoAxis.h.
References label_.
Referenced by npstat::DualHistoAxis::setLabel().
|
inlinestatic |
Definition at line 104 of file NUHistoAxis.h.
bool npstat::NUHistoAxis::write | ( | std::ostream & | of | ) | const |
Definition at line 149 of file NUHistoAxis.cc.
References binEdges_, trackerHits::c, label_, and uniform_.
Referenced by npstat::DualHistoAxis::write().
|
friend |
Definition at line 122 of file NUHistoAxis.h.
|
friend |
Definition at line 121 of file NUHistoAxis.h.
|
private |
Definition at line 116 of file NUHistoAxis.h.
Referenced by binCenter(), binInterval(), binNumber(), binWidth(), closestValidBin(), fltBinNumber(), isClose(), leftBinEdge(), NUHistoAxis(), operator==(), rightBinEdge(), and write().
|
private |
Definition at line 117 of file NUHistoAxis.h.
Referenced by Mixins._Labelable::_findDependencies(), Mixins._TypedParameterizable::dumpPython(), isClose(), label(), NUHistoAxis(), operator==(), setLabel(), Mixins._Labelable::setLabel(), and write().
|
private |
Definition at line 115 of file NUHistoAxis.h.
Referenced by interval(), isClose(), length(), max(), NUHistoAxis(), operator==(), and overflowIndex().
|
private |
Definition at line 114 of file NUHistoAxis.h.
Referenced by interval(), isClose(), length(), min(), NUHistoAxis(), operator==(), and overflowIndex().
|
private |
Definition at line 118 of file NUHistoAxis.h.
Referenced by closestValidBin(), fltBinNumber(), isClose(), nBins(), NUHistoAxis(), and operator==().
|
private |
Definition at line 119 of file NUHistoAxis.h.
Referenced by isClose(), isUniform(), operator==(), read(), and write().