1 | /*
|
---|
2 | * Histogram.hpp
|
---|
3 | *
|
---|
4 | * Created on: Jul 26, 2012
|
---|
5 | * Author: heber
|
---|
6 | */
|
---|
7 |
|
---|
8 | #ifndef HISTOGRAM_HPP_
|
---|
9 | #define HISTOGRAM_HPP_
|
---|
10 |
|
---|
11 |
|
---|
12 | // include config.h
|
---|
13 | #ifdef HAVE_CONFIG_H
|
---|
14 | #include <config.h>
|
---|
15 | #endif
|
---|
16 |
|
---|
17 | #include <iosfwd>
|
---|
18 | #include <map>
|
---|
19 | #include <vector>
|
---|
20 |
|
---|
21 | class HistogramTest;
|
---|
22 |
|
---|
23 | /** This class generates a histogram from a given vector of sampled values.
|
---|
24 | *
|
---|
25 | * Most importantly, it also contains operator+=() and operator-=() to perform
|
---|
26 | * sum on the \b histograms.
|
---|
27 | *
|
---|
28 | * This is to be used with the OrthogonalSummation which requires these specific
|
---|
29 | * operator implementations.
|
---|
30 | *
|
---|
31 | */
|
---|
32 | class Histogram
|
---|
33 | {
|
---|
34 | //!> grant unit test access to private parts
|
---|
35 | friend class HistogramTest;
|
---|
36 | //!> grant output operator access
|
---|
37 | friend std::ostream & operator<<(std::ostream &ost, const Histogram &histogram);
|
---|
38 | public:
|
---|
39 | //!> named type for a vector of sample values
|
---|
40 | typedef std::vector<double> samples_t;
|
---|
41 | //!> named type for the start of a bin
|
---|
42 | typedef double BinLowerEnd;
|
---|
43 | //!> named type for the count of a bin, may be fractional
|
---|
44 | typedef double BinWeight;
|
---|
45 | //!> named type for the pair identifying a bin by its lower end and count
|
---|
46 | typedef std::pair< BinLowerEnd, BinWeight> Bin_t;
|
---|
47 | private:
|
---|
48 | //!> named type for a vector of bins
|
---|
49 | typedef std::map< BinLowerEnd, BinWeight > Bins_t;
|
---|
50 | public:
|
---|
51 | Histogram() :
|
---|
52 | binwidth(0.5),
|
---|
53 | offset(0.)
|
---|
54 | {}
|
---|
55 |
|
---|
56 | /** Constructor for class Histogram.
|
---|
57 | *
|
---|
58 | * @param offset where the bins should start
|
---|
59 | * @param binwidth width of the bins
|
---|
60 | */
|
---|
61 | Histogram(const BinLowerEnd _offset, const double _binwidth) :
|
---|
62 | binwidth(_binwidth),
|
---|
63 | offset(_offset)
|
---|
64 | {}
|
---|
65 |
|
---|
66 | /** Constructor for class Histogram.
|
---|
67 | *
|
---|
68 | * @param samples samples to put in the histogram.
|
---|
69 | * @param offset where the bins should start
|
---|
70 | * @param binwidth width of the bins
|
---|
71 | */
|
---|
72 | Histogram(const samples_t &samples, const BinLowerEnd _offset, const double _binwidth);
|
---|
73 |
|
---|
74 | /** Adding another histogram onto this one.
|
---|
75 | *
|
---|
76 | * \note The operation is area-conserving, i.e. the new area is the sum of
|
---|
77 | * both areas.
|
---|
78 | *
|
---|
79 | * @param other other histogram
|
---|
80 | * @return ref to this instance
|
---|
81 | */
|
---|
82 | Histogram& operator+=(const Histogram &other);
|
---|
83 |
|
---|
84 | /** Subtracting another histogram from this one.
|
---|
85 | *
|
---|
86 | * \note The operation is area-conserving, i.e. the new area is the
|
---|
87 | * difference of both areas.
|
---|
88 | *
|
---|
89 | * @param other other histogram
|
---|
90 | * @return ref to this instance
|
---|
91 | */
|
---|
92 | Histogram& operator-=(const Histogram &other);
|
---|
93 |
|
---|
94 | /** States whether each bin of this histogram has count of zero.
|
---|
95 | *
|
---|
96 | * @return true - all bins are zero, false - else
|
---|
97 | */
|
---|
98 | bool isEmpty() const;
|
---|
99 |
|
---|
100 | /** Sums all found weights times the Histogram::binwidth.
|
---|
101 | *
|
---|
102 | * @return sum over all weights times width.
|
---|
103 | */
|
---|
104 | double area() const;
|
---|
105 |
|
---|
106 | private:
|
---|
107 | /** Returns the iterator to the bin representing the lower end into which the \a value fits.
|
---|
108 | *
|
---|
109 | * @param _value value to fit.
|
---|
110 | * @return iterator to bin or to bins.end() if not matching
|
---|
111 | */
|
---|
112 | Bins_t::iterator getLowerEndBin(const double _value);
|
---|
113 |
|
---|
114 | /** Returns the iterator to the bin representing the upper end into which the \a value fits.
|
---|
115 | *
|
---|
116 | * @param _value value to fit.
|
---|
117 | * @return iterator to bin or to bins.end() if not matching
|
---|
118 | */
|
---|
119 | Bins_t::iterator getHigherEndBin(const double _value);
|
---|
120 |
|
---|
121 | /** Returns the lower end regardless of whether such a bin exists.
|
---|
122 | *
|
---|
123 | * @param _value value to place into a bin
|
---|
124 | * @return start of would-be bin to contain this \a _value
|
---|
125 | */
|
---|
126 | BinLowerEnd getLowerEnd(const double _value) const;
|
---|
127 |
|
---|
128 | /** Helper function that contains all the logic of how to superpose two
|
---|
129 | * histograms.
|
---|
130 | *
|
---|
131 | * Is called by Histogram::operator+=() and Histogram::operator-=()
|
---|
132 | *
|
---|
133 | * @param other other histogram
|
---|
134 | * @param prefactor +1. is then addition, -1. is subtraction.
|
---|
135 | */
|
---|
136 | void superposeOtherHistogram(const Histogram &other, const double prefactor);
|
---|
137 |
|
---|
138 | /** Helper function to add missing bins in superposition operation.
|
---|
139 | *
|
---|
140 | * We add here enough bins, initialized to weight zero such that the bin
|
---|
141 | * of [LowerEnd, NextLowerEnd) fully fits. Does nothing if the bins are
|
---|
142 | * already present.
|
---|
143 | *
|
---|
144 | * @param LowerEnd lowerend of the other bin (to superpose)
|
---|
145 | * @param NextLowerEnd lower end of bin (to superpose) next adjacent to other
|
---|
146 | */
|
---|
147 | void extendMissingBins(const BinLowerEnd LowerEnd, const BinLowerEnd NextLowerEnd);
|
---|
148 |
|
---|
149 | /** Helper function to print BinLowerEnd and BinWeight to a string for every bin.
|
---|
150 | *
|
---|
151 | * @return string containing information on each consecutive bin
|
---|
152 | */
|
---|
153 | std::string printBins() const;
|
---|
154 |
|
---|
155 | private:
|
---|
156 | //!> vector of bins containing the histogram
|
---|
157 | Bins_t bins;
|
---|
158 | //!> width of bin
|
---|
159 | const double binwidth;
|
---|
160 | //!> offset for the start of the bins
|
---|
161 | const BinLowerEnd offset;
|
---|
162 | };
|
---|
163 |
|
---|
164 | /** Function to print an arbitrary pair to ostream.
|
---|
165 | *
|
---|
166 | * @param ost output stream
|
---|
167 | * @param elem element to print
|
---|
168 | * @return ref to given ostream for concatenation
|
---|
169 | */
|
---|
170 | std::ostream & operator<<(std::ostream &ost, const Histogram::Bin_t &elem);
|
---|
171 |
|
---|
172 | /** Function to print histogram to ostream.
|
---|
173 | *
|
---|
174 | * @param ost output stream
|
---|
175 | * @param histogram histogram to print
|
---|
176 | * @return ref to given ostream for concatenation
|
---|
177 | */
|
---|
178 | std::ostream & operator<<(std::ostream &ost, const Histogram &histogram);
|
---|
179 |
|
---|
180 |
|
---|
181 | #endif /* HISTOGRAM_HPP_ */
|
---|