[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>
|
---|
| 18 |
|
---|
[f66195] | 19 | #include "defs.hpp"
|
---|
| 20 |
|
---|
| 21 | /********************************************** declarations *******************************/
|
---|
[7d96c6] | 22 |
|
---|
[342f33f] | 23 | /** Single vector.
|
---|
| 24 | * basically, just a x[3] but with helpful functions
|
---|
| 25 | */
|
---|
[e4ea46] | 26 | class Vector {
|
---|
[72e7fa] | 27 | protected:
|
---|
| 28 | // this struct is used to indicate calls to the Baseconstructor from inside vectors.
|
---|
| 29 | struct Baseconstructor{};
|
---|
[1bd79e] | 30 | public:
|
---|
[6ac7ee] | 31 |
|
---|
[042f82] | 32 | Vector();
|
---|
[fb73b8] | 33 | Vector(const double x1, const double x2, const double x3);
|
---|
[0a4f7f] | 34 | Vector(const Vector& src);
|
---|
[72e7fa] | 35 | virtual ~Vector();
|
---|
| 36 |
|
---|
[1bd79e] | 37 | // Method implemented by forwarding to the Representation
|
---|
| 38 |
|
---|
[753f02] | 39 | double DistanceSquared(const Vector &y) const;
|
---|
[8cbb97] | 40 | Vector GetDistanceVectorToPlane(const Vector &PlaneNormal, const Vector &PlaneOffset) const;
|
---|
[753f02] | 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;
|
---|
[54a746] | 46 | bool IsZero() const;
|
---|
| 47 | bool IsOne() const;
|
---|
[753f02] | 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);
|
---|
[776b64] | 59 | void Scale(const double factor);
|
---|
| 60 | void MatrixMultiplication(const double * const M);
|
---|
[753f02] | 61 | bool InverseMatrixMultiplication(const double * const M);
|
---|
[e138de] | 62 | void KeepPeriodic(const double * const matrix);
|
---|
[753f02] | 63 | bool GetOneNormalVector(const Vector &x1);
|
---|
| 64 | bool MakeNormalTo(const Vector &y1);
|
---|
[776b64] | 65 | bool IsInParallelepiped(const Vector &offset, const double * const parallelepiped) const;
|
---|
| 66 | void WrapPeriodically(const double * const M, const double * const Minv);
|
---|
[2ededc2] | 67 |
|
---|
[0a4f7f] | 68 | // Accessors ussually come in pairs... and sometimes even more than that
|
---|
[753f02] | 69 | double& operator[](size_t i);
|
---|
| 70 | const double& operator[](size_t i) const;
|
---|
[1bd79e] | 71 | double& at(size_t i);
|
---|
| 72 | const double& at(size_t i) const;
|
---|
[0a4f7f] | 73 |
|
---|
| 74 | // Assignment operator
|
---|
[753f02] | 75 | Vector &operator=(const Vector& src);
|
---|
[0a4f7f] | 76 |
|
---|
| 77 | // Access to internal structure
|
---|
[753f02] | 78 | double* get();
|
---|
[72e7fa] | 79 |
|
---|
[1bd79e] | 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 |
|
---|
[72e7fa] | 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;
|
---|
[0a4f7f] | 95 |
|
---|
[1bd79e] | 96 | protected:
|
---|
| 97 |
|
---|
[0a4f7f] | 98 | private:
|
---|
[753f02] | 99 | double x[NDIM];
|
---|
[0a4f7f] | 100 |
|
---|
[342f33f] | 101 | };
|
---|
| 102 |
|
---|
[9c20aa] | 103 | ostream & operator << (ostream& ost, const Vector &m);
|
---|
[b84d5d] | 104 | const Vector& operator*=(Vector& a, const double m);
|
---|
| 105 | Vector const operator*(const Vector& a, const double m);
|
---|
| 106 | Vector const operator*(const double m, const Vector& a);
|
---|
[342f33f] | 107 |
|
---|
| 108 | #endif /*VECTOR_HPP_*/
|
---|