source: src/vector.hpp@ 1999d8

Action_Thermostats Add_AtomRandomPerturbation Add_FitFragmentPartialChargesAction Add_RotateAroundBondAction Add_SelectAtomByNameAction Added_ParseSaveFragmentResults AddingActions_SaveParseParticleParameters Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_ParticleName_to_Atom Adding_StructOpt_integration_tests AtomFragments Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.5.4 Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator CombiningParticlePotentialParsing Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_BoundInBox_CenterInBox_MoleculeActions Fix_ChargeSampling_PBC Fix_ChronosMutex Fix_FitPartialCharges Fix_FitPotential_needs_atomicnumbers Fix_ForceAnnealing Fix_IndependentFragmentGrids Fix_ParseParticles Fix_ParseParticles_split_forward_backward_Actions Fix_PopActions Fix_QtFragmentList_sorted_selection Fix_Restrictedkeyset_FragmentMolecule Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns Fix_fitting_potentials Fixes ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion FragmentAction_writes_AtomFragments FragmentMolecule_checks_bonddegrees GeometryObjects Gui_Fixes Gui_displays_atomic_force_velocity ImplicitCharges IndependentFragmentGrids IndependentFragmentGrids_IndividualZeroInstances IndependentFragmentGrids_IntegrationTest IndependentFragmentGrids_Sole_NN_Calculation JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix MoreRobust_FragmentAutomation ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PdbParser_setsAtomName PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks Rewrite_FitPartialCharges RotateToPrincipalAxisSystem_UndoRedo SaturateAtoms_findBestMatching SaturateAtoms_singleDegree StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg Switchable_LogView ThirdParty_MPQC_rebuilt_buildsystem TrajectoryDependenant_MaxOrder TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps TremoloParser_setsAtomName Ubuntu_1604_changes stable
Last change on this file since 1999d8 was ab1932, checked in by Frederik Heber <heber@…>, 16 years ago

Merge branch 'TesselationRefactoring' into ConcaveHull

Conflicts:

molecuilder/src/boundary.cpp
molecuilder/src/boundary.hpp
molecuilder/src/linkedcell.cpp
molecuilder/src/linkedcell.hpp
molecuilder/src/molecules.hpp

All of Saskia Metzler's new function were transfered from boundary.cpp to tesselation.cpp and the changes due to TesselPoint, LinkedCell and so on incorporated.

  • Property mode set to 100755
File size: 2.5 KB
Line 
1#ifndef VECTOR_HPP_
2#define VECTOR_HPP_
3
4using namespace std;
5
6#include "helpers.hpp"
7
8class Vector;
9
10/** Single vector.
11 * basically, just a x[3] but with helpful functions
12 */
13class Vector {
14 public:
15 double x[NDIM];
16
17 Vector();
18 Vector(double x1, double x2, double x3);
19 ~Vector();
20
21 double Distance(const Vector *y) const;
22 double DistanceSquared(const Vector *y) const;
23 double PeriodicDistance(const Vector *y, const double *cell_size) const;
24 double PeriodicDistanceSquared(const Vector *y, const double *cell_size) const;
25 double ScalarProduct(const Vector *y) const;
26 double Projection(const Vector *y) const;
27 double Norm() const;
28 double NormSquared() const;
29 double Angle(const Vector *y) const;
30 bool IsNull();
31
32 void AddVector(const Vector *y);
33 void SubtractVector(const Vector *y);
34 void CopyVector(const Vector *y);
35 void RotateVector(const Vector *y, const double alpha);
36 void VectorProduct(const Vector *y);
37 void ProjectOntoPlane(const Vector *y);
38 void Zero();
39 void One(double one);
40 void Init(double x1, double x2, double x3);
41 void Normalize();
42 void Translate(const Vector *x);
43 void Mirror(const Vector *x);
44 void Scale(double **factor);
45 void Scale(double *factor);
46 void Scale(double factor);
47 void MatrixMultiplication(double *M);
48 double * InverseMatrix(double *A);
49 void InverseMatrixMultiplication(double *M);
50 void KeepPeriodic(ofstream *out, double *matrix);
51 void LinearCombinationOfVectors(const Vector *x1, const Vector *x2, const Vector *x3, double *factors);
52 double CutsPlaneAt(Vector *A, Vector *B, Vector *C);
53 bool GetIntersectionWithPlane(ofstream *out, Vector *PlaneNormal, Vector *PlaneOffset, Vector *LineVector, Vector *LineVector2);
54 bool GetIntersectionOfTwoLinesOnPlane(ofstream *out, Vector *Line1a, Vector *Line1b, Vector *Line2a, Vector *Line2b);
55 bool GetOneNormalVector(const Vector *x1);
56 bool MakeNormalVector(const Vector *y1);
57 bool MakeNormalVector(const Vector *y1, const Vector *y2);
58 bool MakeNormalVector(const Vector *x1, const Vector *x2, const Vector *x3);
59 bool SolveSystem(Vector *x1, Vector *x2, Vector *y, double alpha, double beta, double c);
60 bool LSQdistance(Vector **vectors, int dim);
61 void AskPosition(double *cell_size, bool check);
62 bool Output(ofstream *out) const;
63};
64
65ostream & operator << (ostream& ost, const Vector &m);
66//Vector& operator+=(Vector& a, const Vector& b);
67//Vector& operator*=(Vector& a, const double m);
68//Vector& operator*(const Vector& a, const double m);
69//Vector& operator+(const Vector& a, const Vector& b);
70
71#endif /*VECTOR_HPP_*/
Note: See TracBrowser for help on using the repository browser.