1 | /*
|
---|
2 | * Project: MoleCuilder
|
---|
3 | * Description: creates and alters molecular systems
|
---|
4 | * Copyright (C) 2012 University of Bonn. All rights reserved.
|
---|
5 | *
|
---|
6 | *
|
---|
7 | * This file is part of MoleCuilder.
|
---|
8 | *
|
---|
9 | * MoleCuilder is free software: you can redistribute it and/or modify
|
---|
10 | * it under the terms of the GNU General Public License as published by
|
---|
11 | * the Free Software Foundation, either version 2 of the License, or
|
---|
12 | * (at your option) any later version.
|
---|
13 | *
|
---|
14 | * MoleCuilder is distributed in the hope that it will be useful,
|
---|
15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
17 | * GNU General Public License for more details.
|
---|
18 | *
|
---|
19 | * You should have received a copy of the GNU General Public License
|
---|
20 | * along with MoleCuilder. If not, see <http://www.gnu.org/licenses/>.
|
---|
21 | */
|
---|
22 |
|
---|
23 | /*
|
---|
24 | * Histogram.cpp
|
---|
25 | *
|
---|
26 | * Created on: Jul 26, 2012
|
---|
27 | * Author: heber
|
---|
28 | */
|
---|
29 |
|
---|
30 |
|
---|
31 | // include config.h
|
---|
32 | #ifdef HAVE_CONFIG_H
|
---|
33 | #include <config.h>
|
---|
34 | #endif
|
---|
35 |
|
---|
36 | #include "CodePatterns/MemDebug.hpp"
|
---|
37 |
|
---|
38 | #include "Histogram.hpp"
|
---|
39 |
|
---|
40 | #include <algorithm>
|
---|
41 | #include <cmath>
|
---|
42 | #include <sstream>
|
---|
43 |
|
---|
44 | #include <boost/bind.hpp>
|
---|
45 | #include <boost/foreach.hpp>
|
---|
46 |
|
---|
47 | #include "CodePatterns/Assert.hpp"
|
---|
48 | #include "CodePatterns/Log.hpp"
|
---|
49 |
|
---|
50 | /** Tiny helper struct to create equally spaced bins with count of zero.
|
---|
51 | *
|
---|
52 | */
|
---|
53 | struct BinCreator_t {
|
---|
54 | BinCreator_t( const double lowerend, const double _width ) :
|
---|
55 | currentstart(lowerend),
|
---|
56 | width(_width)
|
---|
57 | {}
|
---|
58 | Histogram::Bin_t operator()() {
|
---|
59 | Histogram::Bin_t bin( make_pair( currentstart, 0.) );
|
---|
60 | currentstart+=width;
|
---|
61 | return bin;
|
---|
62 | }
|
---|
63 | private:
|
---|
64 | double currentstart;
|
---|
65 | const double width;
|
---|
66 | };
|
---|
67 |
|
---|
68 | // see http://stackoverflow.com/questions/634087/stdcopy-to-stdcout-for-stdpair
|
---|
69 | // printing a pair is not easy, especially so with ostream_iterator as it cannot find
|
---|
70 | // overload operator<<() as it is not in namespace std.
|
---|
71 | template <class T>
|
---|
72 | struct PrintPair : public std::unary_function<T, void>
|
---|
73 | {
|
---|
74 | std::ostream& os;
|
---|
75 | PrintPair(std::ostream& strm) : os(strm) {}
|
---|
76 |
|
---|
77 | void operator()(const T& elem) const
|
---|
78 | {
|
---|
79 | os << "(" << elem.first << "," << elem.second << ") ";
|
---|
80 | }
|
---|
81 | };
|
---|
82 |
|
---|
83 | Histogram::Histogram(const samples_t &samples, const int _CountBins) :
|
---|
84 | binwidth(0.5),
|
---|
85 | CountBins(_CountBins)
|
---|
86 | {
|
---|
87 | // build histogram from samples
|
---|
88 | if (!samples.empty()) {
|
---|
89 | if (CountBins == -1) {
|
---|
90 | CountBins = ceil(pow(samples.size(), 1./3.));
|
---|
91 | }
|
---|
92 | // 2. get min and max and determine width
|
---|
93 | samples_t::const_iterator maxiter = max_element(samples.begin(), samples.end());
|
---|
94 | samples_t::const_iterator miniter = min_element(samples.begin(), samples.end());
|
---|
95 | ASSERT((maxiter != samples.end()) || (miniter != samples.end()),
|
---|
96 | "Histogram::Histogram() - cannot find min/max despite non-empty range.");
|
---|
97 | LOG(1, "DEBUG: min is " << *miniter << " and max is " << *maxiter << ".");
|
---|
98 | binwidth = (*maxiter - *miniter)/(CountBins-1);
|
---|
99 |
|
---|
100 | // 3. create each bin
|
---|
101 | BinCreator_t BinCreator( *miniter, binwidth );
|
---|
102 | std::vector<Bin_t> vectorbins;
|
---|
103 | // we need one extra bin for getBin()'s find to work properly
|
---|
104 | vectorbins.resize(CountBins+1, Bin_t( make_pair(0., 0.) ) );
|
---|
105 | std::generate( vectorbins.begin(), vectorbins.end(), BinCreator );
|
---|
106 | std::stringstream output;
|
---|
107 | std::for_each( vectorbins.begin(), vectorbins.end(), PrintPair<Bin_t>(output));
|
---|
108 | LOG(2, "DEBUG: Bins are " << output.str() << ".");
|
---|
109 | bins.insert(vectorbins.begin(), vectorbins.end());
|
---|
110 |
|
---|
111 | // 4. place each sample into bin
|
---|
112 | BOOST_FOREACH( double value, samples) {
|
---|
113 | const Bins_t::iterator biniter = getBin(value);
|
---|
114 | ASSERT( biniter != bins.end(),
|
---|
115 | "Histogram::Histogram() - cannot find bin for value from given samples.");
|
---|
116 | biniter->second += 1.;
|
---|
117 | }
|
---|
118 | } else {
|
---|
119 | LOG(1, "INFO: Given vector of samples is empty.");
|
---|
120 | }
|
---|
121 | }
|
---|
122 |
|
---|
123 | Histogram& Histogram::operator+=(const Histogram &other)
|
---|
124 | {
|
---|
125 | return *this;
|
---|
126 | }
|
---|
127 |
|
---|
128 | Histogram& Histogram::operator-=(const Histogram &other)
|
---|
129 | {
|
---|
130 | return *this;
|
---|
131 | }
|
---|
132 |
|
---|
133 | bool Histogram::isEmpty() const
|
---|
134 | {
|
---|
135 | bool status = true;
|
---|
136 | for (Bins_t::const_iterator iter = bins.begin(); iter != bins.end(); ++iter)
|
---|
137 | status &= iter->second == 0;
|
---|
138 | return status;
|
---|
139 | }
|
---|
140 |
|
---|
141 | Histogram::Bins_t::iterator Histogram::getBin(const double _value)
|
---|
142 | {
|
---|
143 | // \note we may use equal_range as our bins are always sorted
|
---|
144 | Bins_t::iterator iter = bins.lower_bound(_value);
|
---|
145 | // if we are not on the boundary we have to step back by one
|
---|
146 | if (iter != bins.end()) {
|
---|
147 | if (_value != iter->first)
|
---|
148 | --iter;
|
---|
149 | }
|
---|
150 | // if we actually are on boundary of "last bin", set to end
|
---|
151 | if ((_value == iter->first) && (iter == --bins.end()))
|
---|
152 | iter = bins.end();
|
---|
153 |
|
---|
154 | return iter;
|
---|
155 | }
|
---|