source: src/Fragmentation/Exporters/SphericalPointDistribution.hpp@ 9cf90e

Last change on this file since 9cf90e was 9cf90e, checked in by Frederik Heber <heber@…>, 9 years ago

recurseMatching() now takes connections into account.

  • matchSphericalPointDistribution() replaced by getRemainingPoints() as that describes what it does. match...() sounds symmetrical which the function is no longer as connection is associated with former _newpolygon.
  • SphericalPointDistribution now has internal points and adjacency, initialized by initSelf().
  • findBestMatching() and getRemainingPoints() are no longer static functions.
  • all unit tests are working again, including the .._multiple() that tests for joint points due to bond degree greater than 1.
  • the huge case switch in SaturatedFragment::saturateAtom() now resides in initSelf().
  • Property mode set to 100644
File size: 8.6 KB
RevLine 
[e895f7]1/*
2 * SphericalPointDistribution.hpp
3 *
4 * Created on: May 29, 2014
5 * Author: heber
6 */
7
8
9#ifndef SPHERICALPOINTDISTRIBUTION_HPP_
10#define SPHERICALPOINTDISTRIBUTION_HPP_
11
12// include config.h
13#ifdef HAVE_CONFIG_H
14#include <config.h>
15#endif
16
17#include "CodePatterns/Assert.hpp"
18
19#include <cmath>
20#include <list>
[4492f1]21#include <map>
22#include <set>
23#include <vector>
[e895f7]24
25#include "LinearAlgebra/Vector.hpp"
26
[7e9402]27class SphericalPointDistributionTest;
28
[e895f7]29/** contains getters for the VSEPR model for specific number of electrons.
30 *
31 * This struct contains specialized functions returning a list of Vectors
32 * (points in space) to match the VSEPR model for the given number of electrons.
33 *
34 * This is implemented via template specialization of the function get().
35 *
36 * These specializations are taken from the python script \b CreateVspeShapes.py
37 * by Christian Neuen, 07th May 2009.
38 */
39struct SphericalPointDistribution
40{
41 /** Cstor for SphericalPointDistribution, allows setting radius of sphere
42 *
43 * \param _BondLength desired radius of sphere
44 */
45 SphericalPointDistribution(const double _Bondlength = 1.) :
[81557e]46 Bondlength(_Bondlength)
[e895f7]47 {}
48
49 //!> typedef for the list of points
50 typedef std::list<Vector> Polygon_t;
[80c119]51 //!> typedef for the list of points with integral weights
52 typedef std::list<std::pair<Vector, int> > WeightedPolygon_t;
[4492f1]53 //!> typedef for a sorted list of indices
54 typedef std::set<unsigned int> IndexSet_t;
55 //!> typedef for the adjacency list of a polygon
56 typedef std::map<unsigned int, IndexSet_t > adjacency_t;
[e895f7]57
58 /** General getter function for the distribution of points on the surface.
59 *
60 * \warn this function needs to be specialized!
61 *
62 * \return Polygon_t with points on the surface centered at (0,0,0)
63 */
[81557e]64 template <int N> Polygon_t get() const
[e895f7]65 {
66 ASSERT(0, "SphericalPointDistribution::get() - not specialized for "+toString(N)+".");
67 }
68
[4492f1]69 template <int N> adjacency_t getConnections()
70 {
71 ASSERT(0, "SphericalPointDistribution::getConnections() - not specialized for "+toString(N)+".");
72 }
73
[9cf90e]74 /** Returns vacant spots to fill to get a complete spherical point distribution from
75 * given points \a _polygon, containing then \a _N in total.
[d468b5]76 *
77 * This is a helper to determine points where to best insert saturation
78 * hydrogens.
[e895f7]79 *
[9cf90e]80 * \param _polygon already filled places to match
81 * \param _N desired total number fo points
[e895f7]82 */
[9cf90e]83 Polygon_t getRemainingPoints(const WeightedPolygon_t &_polygon, const int _N);
[d468b5]84
[e895f7]85 //!> default radius of the spherical distribution
86 const double Bondlength;
87 //!> precalculated value for root of 3
[81557e]88 static const double SQRT_3;
[4d611d]89 //!> threshold for L1 error below which matching is immediately acceptable
90 static const double L1THRESHOLD;
91 //!> threshold for L2 error below which matching is acceptable
92 static const double L2THRESHOLD;
[6cf5bb]93
[7e9402]94 //!> typedef for a full rotation specification consisting of axis and angle.
[6cf5bb]95 typedef std::pair<Vector, double> Rotation_t;
96
[7e9402]97 //!> typedef for a list of indices (of points in a polygon)
[6cf5bb]98 typedef std::list<unsigned int> IndexList_t;
[7e9402]99 //!> typedef enumerating possibly multiple points accumulated as one point
100 typedef std::list< IndexList_t > IndexTupleList_t;
101 //!> typedef for a vector of indices
[6cf5bb]102 typedef std::vector<unsigned int> IndexArray_t;
[7e9402]103 //!> typedef for a Vector of positions
[6cf5bb]104 typedef std::vector<Vector> VectorArray_t;
[7e9402]105 //!> typedef for a Vector of positions with weights
106 typedef std::vector< std::pair<Vector, int> > WeightedVectorArray_t;
[4d611d]107 //!> typedef for a vector of degrees (or integral weights)
108 typedef std::vector<unsigned int> WeightsArray_t;
[6cf5bb]109
110 //!> amplitude up to which deviations in checks of rotations are tolerated
111 static const double warn_amplitude;
112
[4b96da]113 struct PolygonWithIndices
114 {
115 //!> array with points
116 VectorArray_t polygon;
117 //!> list with indices for the above points, defining subset
118 IndexList_t indices;
119 };
120
[66700f2]121 static Vector calculateCenterOfMinimumDistance(
122 const SphericalPointDistribution::VectorArray_t &_positions,
123 const SphericalPointDistribution::IndexList_t &_indices);
124
[9cf90e]125private:
126 //!> points for the ideal distribution
127 Polygon_t points;
128 //!> connection information between these ideal points
129 adjacency_t adjacency;
130
131 /** Initialize inner status (points and adjacency) to desired number of
132 * points.
133 *
134 * \param _N number of points
135 */
136 void initSelf(const int _N);
137
[6cf5bb]138private:
[7e9402]139 //!> grant unit tests access to private parts
140 friend class SphericalPointDistributionTest;
141
[6cf5bb]142 static std::pair<double, double> calculateErrorOfMatching(
[4d611d]143 const VectorArray_t &_old,
144 const VectorArray_t &_new,
145 const IndexTupleList_t &_Matching);
[6cf5bb]146
147 static Polygon_t removeMatchingPoints(
[4b96da]148 const PolygonWithIndices &_points);
[6cf5bb]149
150 struct MatchingControlStructure {
[9cf90e]151 MatchingControlStructure(
152 const adjacency_t &_adjacency,
153 const VectorArray_t &_oldpoints,
154 const VectorArray_t &_newpoints,
155 const WeightsArray_t &_weights
156 );
[6cf5bb]157 bool foundflag;
158 double bestL2;
[9cf90e]159 const adjacency_t &adjacency;
160 const VectorArray_t oldpoints;
161 const VectorArray_t newpoints;
162 const WeightsArray_t weights;
[4d611d]163 IndexTupleList_t bestmatching;
[6cf5bb]164 };
165
166 static void recurseMatchings(
167 MatchingControlStructure &_MCS,
[4d611d]168 IndexTupleList_t &_matching,
[6cf5bb]169 IndexList_t _indices,
[4d611d]170 WeightsArray_t &_remainingweights,
171 WeightsArray_t::iterator _remainiter,
172 const unsigned int _matchingsize
173 );
[6cf5bb]174
[9cf90e]175 IndexList_t findBestMatching(const WeightedPolygon_t &_polygon);
[7e9402]176
177 static IndexList_t joinPoints(
178 Polygon_t &_newpolygon,
179 const VectorArray_t &_newpoints,
180 const IndexTupleList_t &_bestmatching
[6cf5bb]181 );
182
183 static Rotation_t findPlaneAligningRotation(
[4b96da]184 const PolygonWithIndices &_referencepositions,
185 const PolygonWithIndices &_currentpositions
[6cf5bb]186 );
187
188 static Rotation_t findPointAligningRotation(
[4b96da]189 const PolygonWithIndices &remainingold,
190 const PolygonWithIndices &remainingnew);
[e895f7]191};
192
[f54930]193// declare specializations
194
[81557e]195template <> SphericalPointDistribution::Polygon_t SphericalPointDistribution::get<0>() const;
196template <> SphericalPointDistribution::Polygon_t SphericalPointDistribution::get<1>() const;
197template <> SphericalPointDistribution::Polygon_t SphericalPointDistribution::get<2>() const;
198template <> SphericalPointDistribution::Polygon_t SphericalPointDistribution::get<3>() const;
199template <> SphericalPointDistribution::Polygon_t SphericalPointDistribution::get<4>() const;
200template <> SphericalPointDistribution::Polygon_t SphericalPointDistribution::get<5>() const;
201template <> SphericalPointDistribution::Polygon_t SphericalPointDistribution::get<6>() const;
202template <> SphericalPointDistribution::Polygon_t SphericalPointDistribution::get<7>() const;
203template <> SphericalPointDistribution::Polygon_t SphericalPointDistribution::get<8>() const;
204template <> SphericalPointDistribution::Polygon_t SphericalPointDistribution::get<9>() const;
205template <> SphericalPointDistribution::Polygon_t SphericalPointDistribution::get<10>() const;
206template <> SphericalPointDistribution::Polygon_t SphericalPointDistribution::get<11>() const;
207template <> SphericalPointDistribution::Polygon_t SphericalPointDistribution::get<12>() const;
208template <> SphericalPointDistribution::Polygon_t SphericalPointDistribution::get<14>() const;
[e895f7]209
[4492f1]210template <> SphericalPointDistribution::adjacency_t SphericalPointDistribution::getConnections<0>();
211template <> SphericalPointDistribution::adjacency_t SphericalPointDistribution::getConnections<1>();
212template <> SphericalPointDistribution::adjacency_t SphericalPointDistribution::getConnections<2>();
213template <> SphericalPointDistribution::adjacency_t SphericalPointDistribution::getConnections<3>();
214template <> SphericalPointDistribution::adjacency_t SphericalPointDistribution::getConnections<4>();
215template <> SphericalPointDistribution::adjacency_t SphericalPointDistribution::getConnections<5>();
216template <> SphericalPointDistribution::adjacency_t SphericalPointDistribution::getConnections<6>();
217template <> SphericalPointDistribution::adjacency_t SphericalPointDistribution::getConnections<7>();
218template <> SphericalPointDistribution::adjacency_t SphericalPointDistribution::getConnections<8>();
219template <> SphericalPointDistribution::adjacency_t SphericalPointDistribution::getConnections<9>();
220template <> SphericalPointDistribution::adjacency_t SphericalPointDistribution::getConnections<10>();
221template <> SphericalPointDistribution::adjacency_t SphericalPointDistribution::getConnections<11>();
222template <> SphericalPointDistribution::adjacency_t SphericalPointDistribution::getConnections<12>();
223template <> SphericalPointDistribution::adjacency_t SphericalPointDistribution::getConnections<14>();
224
[e895f7]225#endif /* SPHERICALPOINTDISTRIBUTION_HPP_ */
Note: See TracBrowser for help on using the repository browser.