| [342f33f] | 1 | #ifndef VECTOR_HPP_ | 
|---|
|  | 2 | #define VECTOR_HPP_ | 
|---|
|  | 3 |  | 
|---|
| [357fba] | 4 | using namespace std; | 
|---|
|  | 5 |  | 
|---|
| [f66195] | 6 | /*********************************************** includes ***********************************/ | 
|---|
|  | 7 |  | 
|---|
|  | 8 | // include config.h | 
|---|
|  | 9 | #ifdef HAVE_CONFIG_H | 
|---|
|  | 10 | #include <config.h> | 
|---|
|  | 11 | #endif | 
|---|
| [357fba] | 12 |  | 
|---|
| [c75de1] | 13 | #include <iostream> | 
|---|
| [54a746] | 14 | #include <gsl/gsl_vector.h> | 
|---|
|  | 15 | #include <gsl/gsl_multimin.h> | 
|---|
|  | 16 |  | 
|---|
| [1bd79e] | 17 | #include <memory> | 
|---|
| [45ef76] | 18 | #include <vector> | 
|---|
| [1bd79e] | 19 |  | 
|---|
| [f66195] | 20 | #include "defs.hpp" | 
|---|
| [1513a74] | 21 | #include "Space.hpp" | 
|---|
| [f66195] | 22 |  | 
|---|
|  | 23 | /********************************************** declarations *******************************/ | 
|---|
| [7d96c6] | 24 |  | 
|---|
| [45ef76] | 25 | class Vector; | 
|---|
|  | 26 |  | 
|---|
|  | 27 | typedef std::vector<Vector> pointset; | 
|---|
|  | 28 |  | 
|---|
| [342f33f] | 29 | /** Single vector. | 
|---|
|  | 30 | * basically, just a x[3] but with helpful functions | 
|---|
|  | 31 | */ | 
|---|
| [1513a74] | 32 | class Vector : public Space{ | 
|---|
| [72e7fa] | 33 | protected: | 
|---|
|  | 34 | // this struct is used to indicate calls to the Baseconstructor from inside vectors. | 
|---|
|  | 35 | struct Baseconstructor{}; | 
|---|
| [1bd79e] | 36 | public: | 
|---|
| [6ac7ee] | 37 |  | 
|---|
| [042f82] | 38 | Vector(); | 
|---|
| [fb73b8] | 39 | Vector(const double x1, const double x2, const double x3); | 
|---|
| [0a4f7f] | 40 | Vector(const Vector& src); | 
|---|
| [72e7fa] | 41 | virtual ~Vector(); | 
|---|
|  | 42 |  | 
|---|
| [1bd79e] | 43 | // Method implemented by forwarding to the Representation | 
|---|
|  | 44 |  | 
|---|
| [753f02] | 45 | double DistanceSquared(const Vector &y) const; | 
|---|
| [d4c9ae] | 46 | double DistanceToSpace(const Space& space) const; | 
|---|
| [753f02] | 47 | double PeriodicDistance(const Vector &y, const double * const cell_size) const; | 
|---|
|  | 48 | double PeriodicDistanceSquared(const Vector &y, const double * const cell_size) const; | 
|---|
|  | 49 | double ScalarProduct(const Vector &y) const; | 
|---|
|  | 50 | double Angle(const Vector &y) const; | 
|---|
| [54a746] | 51 | bool IsZero() const; | 
|---|
|  | 52 | bool IsOne() const; | 
|---|
| [753f02] | 53 | bool IsNormalTo(const Vector &normal) const; | 
|---|
|  | 54 | bool IsEqualTo(const Vector &a) const; | 
|---|
|  | 55 |  | 
|---|
|  | 56 | void AddVector(const Vector &y); | 
|---|
|  | 57 | void SubtractVector(const Vector &y); | 
|---|
|  | 58 | void VectorProduct(const Vector &y); | 
|---|
|  | 59 | void ProjectOntoPlane(const Vector &y); | 
|---|
|  | 60 | void ProjectIt(const Vector &y); | 
|---|
|  | 61 | Vector Projection(const Vector &y) const; | 
|---|
|  | 62 | void Mirror(const Vector &x); | 
|---|
|  | 63 | void ScaleAll(const double *factor); | 
|---|
| [776b64] | 64 | void Scale(const double factor); | 
|---|
|  | 65 | void MatrixMultiplication(const double * const M); | 
|---|
| [753f02] | 66 | bool InverseMatrixMultiplication(const double * const M); | 
|---|
| [e138de] | 67 | void KeepPeriodic(const double * const matrix); | 
|---|
| [753f02] | 68 | bool GetOneNormalVector(const Vector &x1); | 
|---|
|  | 69 | bool MakeNormalTo(const Vector &y1); | 
|---|
| [776b64] | 70 | bool IsInParallelepiped(const Vector &offset, const double * const parallelepiped) const; | 
|---|
|  | 71 | void WrapPeriodically(const double * const M, const double * const Minv); | 
|---|
| [45ef76] | 72 | std::pair<Vector,Vector> partition(const Vector&) const; | 
|---|
|  | 73 | std::pair<pointset,Vector> partition(const pointset&) const; | 
|---|
| [2ededc2] | 74 |  | 
|---|
| [0a4f7f] | 75 | // Accessors ussually come in pairs... and sometimes even more than that | 
|---|
| [753f02] | 76 | double& operator[](size_t i); | 
|---|
|  | 77 | const double& operator[](size_t i) const; | 
|---|
| [1bd79e] | 78 | double& at(size_t i); | 
|---|
|  | 79 | const double& at(size_t i) const; | 
|---|
| [0a4f7f] | 80 |  | 
|---|
|  | 81 | // Assignment operator | 
|---|
| [753f02] | 82 | Vector &operator=(const Vector& src); | 
|---|
| [0a4f7f] | 83 |  | 
|---|
|  | 84 | // Access to internal structure | 
|---|
| [753f02] | 85 | double* get(); | 
|---|
| [72e7fa] | 86 |  | 
|---|
| [1bd79e] | 87 | // Methods that are derived directly from other methods | 
|---|
|  | 88 | double Norm() const; | 
|---|
|  | 89 | double NormSquared() const; | 
|---|
|  | 90 | void Normalize(); | 
|---|
|  | 91 | void Zero(); | 
|---|
|  | 92 | void One(const double one); | 
|---|
|  | 93 | void LinearCombinationOfVectors(const Vector &x1, const Vector &x2, const Vector &x3, const double * const factors); | 
|---|
|  | 94 |  | 
|---|
| [72e7fa] | 95 | // operators for mathematical operations | 
|---|
|  | 96 | bool operator==(const Vector& b) const; | 
|---|
| [fa5a6a] | 97 | bool operator!=(const Vector& b) const; | 
|---|
| [72e7fa] | 98 | const Vector& operator+=(const Vector& b); | 
|---|
|  | 99 | const Vector& operator-=(const Vector& b); | 
|---|
|  | 100 | Vector const operator+(const Vector& b) const; | 
|---|
|  | 101 | Vector const operator-(const Vector& b) const; | 
|---|
| [0a4f7f] | 102 |  | 
|---|
| [1513a74] | 103 | // Methods inherited from Space | 
|---|
|  | 104 | virtual double distance(const Vector &point) const; | 
|---|
|  | 105 | virtual Vector getClosestPoint(const Vector &point) const; | 
|---|
|  | 106 |  | 
|---|
| [1bd79e] | 107 | protected: | 
|---|
|  | 108 |  | 
|---|
| [0a4f7f] | 109 | private: | 
|---|
| [753f02] | 110 | double x[NDIM]; | 
|---|
| [0a4f7f] | 111 |  | 
|---|
| [342f33f] | 112 | }; | 
|---|
|  | 113 |  | 
|---|
| [005e18] | 114 | // some commonly used and fixed vectors | 
|---|
|  | 115 | const extern Vector zeroVec; | 
|---|
|  | 116 | const extern Vector e1; | 
|---|
|  | 117 | const extern Vector e2; | 
|---|
|  | 118 | const extern Vector e3; | 
|---|
|  | 119 |  | 
|---|
| [9c20aa] | 120 | ostream & operator << (ostream& ost, const Vector &m); | 
|---|
| [b84d5d] | 121 | const Vector& operator*=(Vector& a, const double m); | 
|---|
|  | 122 | Vector const operator*(const Vector& a, const double m); | 
|---|
|  | 123 | Vector const operator*(const double m, const Vector& a); | 
|---|
| [342f33f] | 124 |  | 
|---|
|  | 125 | #endif /*VECTOR_HPP_*/ | 
|---|