source: molecuilder/src/vector.hpp@ aab470

Last change on this file since aab470 was 0d111b, checked in by Tillmann Crueger <crueger@…>, 16 years ago

Merge branch 'VectorRefactoring' into StructureRefactoring

Conflicts:

molecuilder/src/Legacy/oldmenu.cpp
molecuilder/src/Makefile.am
molecuilder/src/analysis_correlation.cpp
molecuilder/src/boundary.cpp
molecuilder/src/builder.cpp
molecuilder/src/config.cpp
molecuilder/src/ellipsoid.cpp
molecuilder/src/linkedcell.cpp
molecuilder/src/molecule.cpp
molecuilder/src/molecule_fragmentation.cpp
molecuilder/src/molecule_geometry.cpp
molecuilder/src/molecule_graph.cpp
molecuilder/src/moleculelist.cpp
molecuilder/src/tesselation.cpp
molecuilder/src/tesselationhelpers.cpp
molecuilder/src/unittests/AnalysisCorrelationToSurfaceUnitTest.cpp
molecuilder/src/unittests/bondgraphunittest.cpp
molecuilder/src/vector.cpp
molecuilder/src/vector.hpp

  • Property mode set to 100755
File size: 3.4 KB
RevLine 
[725869]1#ifndef VECTOR_HPP_
2#define VECTOR_HPP_
3
[834ff3]4using namespace std;
5
[17b3a5c]6/*********************************************** includes ***********************************/
7
8// include config.h
9#ifdef HAVE_CONFIG_H
10#include <config.h>
11#endif
[834ff3]12
[3b0ba2]13#include <iostream>
[da84d6]14#include <gsl/gsl_vector.h>
15#include <gsl/gsl_multimin.h>
16
[e7ea64]17#include <memory>
18
[17b3a5c]19#include "defs.hpp"
20
21/********************************************** declarations *******************************/
[ed5f58]22
[725869]23/** Single vector.
24 * basically, just a x[3] but with helpful functions
25 */
[313dff]26class Vector {
[0f55b2]27protected:
28 // this struct is used to indicate calls to the Baseconstructor from inside vectors.
29 struct Baseconstructor{};
[e7ea64]30public:
[e08f45]31
[a048fa]32 Vector();
[069034]33 Vector(const double x1, const double x2, const double x3);
[71910a]34 Vector(const Vector& src);
[0f55b2]35 virtual ~Vector();
36
[e7ea64]37 // Method implemented by forwarding to the Representation
38
[32842d8]39 double DistanceSquared(const Vector &y) const;
[0d111b]40 Vector GetDistanceVectorToPlane(const Vector &PlaneNormal, const Vector &PlaneOffset) const;
[32842d8]41 double DistanceToPlane(const Vector &PlaneNormal, const Vector &PlaneOffset) const;
42 double PeriodicDistance(const Vector &y, const double * const cell_size) const;
43 double PeriodicDistanceSquared(const Vector &y, const double * const cell_size) const;
44 double ScalarProduct(const Vector &y) const;
45 double Angle(const Vector &y) const;
[da84d6]46 bool IsZero() const;
47 bool IsOne() const;
[32842d8]48 bool IsNormalTo(const Vector &normal) const;
49 bool IsEqualTo(const Vector &a) const;
50
51 void AddVector(const Vector &y);
52 void SubtractVector(const Vector &y);
53 void VectorProduct(const Vector &y);
54 void ProjectOntoPlane(const Vector &y);
55 void ProjectIt(const Vector &y);
56 Vector Projection(const Vector &y) const;
57 void Mirror(const Vector &x);
58 void ScaleAll(const double *factor);
[a9b2a0a]59 void Scale(const double factor);
60 void MatrixMultiplication(const double * const M);
[32842d8]61 bool InverseMatrixMultiplication(const double * const M);
[543ce4]62 void KeepPeriodic(const double * const matrix);
[32842d8]63 bool GetOneNormalVector(const Vector &x1);
64 bool MakeNormalTo(const Vector &y1);
[a9b2a0a]65 bool IsInParallelepiped(const Vector &offset, const double * const parallelepiped) const;
66 void WrapPeriodically(const double * const M, const double * const Minv);
[dbd19f]67
[71910a]68 // Accessors ussually come in pairs... and sometimes even more than that
[32842d8]69 double& operator[](size_t i);
70 const double& operator[](size_t i) const;
[e7ea64]71 double& at(size_t i);
72 const double& at(size_t i) const;
[71910a]73
74 // Assignment operator
[32842d8]75 Vector &operator=(const Vector& src);
[71910a]76
77 // Access to internal structure
[32842d8]78 double* get();
[0f55b2]79
[e7ea64]80 // Methods that are derived directly from other methods
81 double Distance(const Vector &y) const;
82 double Norm() const;
83 double NormSquared() const;
84 void Normalize();
85 void Zero();
86 void One(const double one);
87 void LinearCombinationOfVectors(const Vector &x1, const Vector &x2, const Vector &x3, const double * const factors);
88
[0f55b2]89 // operators for mathematical operations
90 bool operator==(const Vector& b) const;
91 const Vector& operator+=(const Vector& b);
92 const Vector& operator-=(const Vector& b);
93 Vector const operator+(const Vector& b) const;
94 Vector const operator-(const Vector& b) const;
[71910a]95
[e7ea64]96protected:
97
[71910a]98private:
[32842d8]99 double x[NDIM];
[71910a]100
[725869]101};
102
[3219a0]103ostream & operator << (ostream& ost, const Vector &m);
[06e3ff]104const Vector& operator*=(Vector& a, const double m);
105Vector const operator*(const Vector& a, const double m);
106Vector const operator*(const double m, const Vector& a);
[725869]107
108#endif /*VECTOR_HPP_*/
Note: See TracBrowser for help on using the repository browser.