source: src/Fragmentation/Histogram/Histogram.cpp@ c4fd03

Action_Thermostats Add_AtomRandomPerturbation Add_FitFragmentPartialChargesAction Add_RotateAroundBondAction Add_SelectAtomByNameAction Added_ParseSaveFragmentResults AddingActions_SaveParseParticleParameters Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_ParticleName_to_Atom Adding_StructOpt_integration_tests AtomFragments Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.5.4 Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator CombiningParticlePotentialParsing Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_BoundInBox_CenterInBox_MoleculeActions Fix_ChargeSampling_PBC Fix_ChronosMutex Fix_FitPartialCharges Fix_FitPotential_needs_atomicnumbers Fix_ForceAnnealing Fix_IndependentFragmentGrids Fix_ParseParticles Fix_ParseParticles_split_forward_backward_Actions Fix_PopActions Fix_QtFragmentList_sorted_selection Fix_Restrictedkeyset_FragmentMolecule Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns Fix_fitting_potentials Fixes ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion FragmentAction_writes_AtomFragments FragmentMolecule_checks_bonddegrees GeometryObjects Gui_Fixes Gui_displays_atomic_force_velocity ImplicitCharges IndependentFragmentGrids IndependentFragmentGrids_IndividualZeroInstances IndependentFragmentGrids_IntegrationTest IndependentFragmentGrids_Sole_NN_Calculation JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix MoreRobust_FragmentAutomation ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PdbParser_setsAtomName PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks Rewrite_FitPartialCharges RotateToPrincipalAxisSystem_UndoRedo SaturateAtoms_findBestMatching SaturateAtoms_singleDegree StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg Switchable_LogView ThirdParty_MPQC_rebuilt_buildsystem TrajectoryDependenant_MaxOrder TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps TremoloParser_setsAtomName Ubuntu_1604_changes stable
Last change on this file since c4fd03 was c4fd03, checked in by Frederik Heber <heber@…>, 12 years ago

Added rudimentary Histogram class.

  • we still lack operator+=() and operator-=().
  • this is supposed to take up the range of eigenvalues and allow to get a sampled represenation of the density of states via the OrthogonalSummation.
  • added unit test.
  • Property mode set to 100644
File size: 4.6 KB
Line 
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 */
53struct 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 }
63private:
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.
71template <class T>
72struct 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
83Histogram::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
123Histogram& Histogram::operator+=(const Histogram &other)
124{
125 return *this;
126}
127
128Histogram& Histogram::operator-=(const Histogram &other)
129{
130 return *this;
131}
132
133bool 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
141Histogram::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}
Note: See TracBrowser for help on using the repository browser.