OpenStructure
Loading...
Searching...
No Matches
svd_superpose.hh
Go to the documentation of this file.
1//------------------------------------------------------------------------------
2// This file is part of the OpenStructure project <www.openstructure.org>
3//
4// Copyright (C) 2008-2020 by the OpenStructure authors
5//
6// This library is free software; you can redistribute it and/or modify it under
7// the terms of the GNU Lesser General Public License as published by the Free
8// Software Foundation; either version 3.0 of the License, or (at your option)
9// any later version.
10// This library is distributed in the hope that it will be useful, but WITHOUT
11// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12// FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
13// details.
14//
15// You should have received a copy of the GNU Lesser General Public License
16// along with this library; if not, write to the Free Software Foundation, Inc.,
17// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18//------------------------------------------------------------------------------
19
20/*
21 * Author Juergen Haas
22 */
23#ifndef OST_SUPERPOSITION_HH
24#define OST_SUPERPOSITION_HH
25
26#include <ost/base.hh>
27#include <ost/geom/geom.hh>
30#include <ost/mol/atom_view.hh>
31
32namespace ost { namespace mol {
33
34class EntityHandle;
35
36namespace alg {
37
54
55
56// the mean square minimizer is split into a private and a public class to avoid
57// exposing the lib Eigen classes to the outside world
58class MeanSquareMinimizerImpl;
59
60
62public:
64 const mol::AtomViewList& atoms_ref);
65 static MeanSquareMinimizer FromPointLists(const std::vector<geom::Vec3>& points,
66 const std::vector<geom::Vec3>& points_ref);
68
69 SuperpositionResult IterativeMinimize(int ncycles=5, Real distance_threshold=2.0) const;
70
72
73
77 std::swap(rhs.impl_, impl_);
78 }
79
80protected:
81 MeanSquareMinimizer(): impl_(NULL) {}
82 MeanSquareMinimizerImpl* impl_;
83};
84
87 const mol::AtomViewList& atoms2,
88 bool apply_transform);
91 const mol::EntityView& ev2,
92 bool apply_transform);
93
96 const geom::Vec3List& pl2);
97
100 const mol::EntityView& ev2,
101 int max_cycles,
102 Real distance_threshold,
103 bool apply_transform);
104
107 const geom::Vec3List& pl2,
108 int max_cycles,
109 Real distance_threshold);
110
111
112
115 const mol::EntityView& ev2,
116 const geom::Mat4& transformation);
117
118
119
120}}}//ns
121#endif
definition of EntityView
MeanSquareMinimizer(const MeanSquareMinimizer &rhs)
SuperpositionResult MinimizeOnce() const
SuperpositionResult IterativeMinimize(int ncycles=5, Real distance_threshold=2.0) const
static MeanSquareMinimizer FromPointLists(const std::vector< geom::Vec3 > &points, const std::vector< geom::Vec3 > &points_ref)
static MeanSquareMinimizer FromAtomLists(const mol::AtomViewList &atoms, const mol::AtomViewList &atoms_ref)
MeanSquareMinimizer & operator=(const MeanSquareMinimizer &rhs)
void swap(MeanSquareMinimizer &rhs)
MeanSquareMinimizerImpl * impl_
float Real
Definition base.hh:44
#define DLLEXPORT_OST_MOL_ALG
SuperpositionResult DLLEXPORT_OST_MOL_ALG SuperposeAtoms(const mol::AtomViewList &atoms1, const mol::AtomViewList &atoms2, bool apply_transform)
takes the corresponding atoms and superposes them
Real DLLEXPORT_OST_MOL_ALG CalculateRMSD(const mol::EntityView &ev1, const mol::EntityView &ev2, const geom::Mat4 &transformation)
calculates RMSD for two entity view
SuperpositionResult DLLEXPORT_OST_MOL_ALG SuperposeSVD(const mol::EntityView &ev1, const mol::EntityView &ev2, bool apply_transform)
superposes two entity views
SuperpositionResult DLLEXPORT_OST_MOL_ALG IterativeSuperposeSVD(const mol::EntityView &ev1, const mol::EntityView &ev2, int max_cycles, Real distance_threshold, bool apply_transform)
iterative superposition
std::vector< AtomView > AtomViewList
Definition base.dox:1
stores the number of cycles and the two final EntityViews (in case IterativeSuperposition was applied...