source: src/atom_atominfo.hpp@ 54b42e

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 54b42e was 54b42e, checked in by Frederik Heber <heber@…>, 14 years ago

AtomInfo::AtomicPosition, ::AtomicVelocity, ::AtomicForce are now a std:vector.

  • This is preparatory for trajectories.
  • Property mode set to 100644
File size: 3.7 KB
Line 
1/*
2 * atom_atominfo.hpp
3 *
4 * Created on: Oct 19, 2009
5 * Author: heber
6 */
7
8#ifndef ATOM_ATOMINFO_HPP_
9#define ATOM_ATOMINFO_HPP_
10
11
12using namespace std;
13
14/*********************************************** includes ***********************************/
15
16// include config.h
17#ifdef HAVE_CONFIG_H
18#include <config.h>
19#endif
20
21#include <vector>
22
23#include "LinearAlgebra/Vector.hpp"
24#include "LinearAlgebra/VectorInterface.hpp"
25
26/****************************************** forward declarations *****************************/
27
28class AtomInfo;
29class element;
30class RealSpaceMatrix;
31
32/********************************************** declarations *******************************/
33
34class AtomInfo : public VectorInterface {
35
36public:
37 AtomInfo();
38 AtomInfo(const AtomInfo &_atom);
39 AtomInfo(const VectorInterface &_v);
40 virtual ~AtomInfo();
41
42 /** Getter for AtomicElement.
43 *
44 * @return constant reference to AtomicElement
45 */
46 const element *getType() const;
47 /** Setter for AtomicElement.
48 *
49 * @param _type new element by pointer to set
50 */
51 void setType(const element *_type);
52 /** Setter for AtomicElement.
53 *
54 * @param _typenr new element by index to set
55 */
56 void setType(const int _typenr);
57
58 /** Getter for AtomicVelocity.
59 *
60 * @return constant reference to AtomicVelocity
61 */
62 Vector& getAtomicVelocity();
63 /** Getter for AtomicVelocity.
64 *
65 * @return constant reference to AtomicVelocity
66 */
67 const Vector& getAtomicVelocity() const;
68 /** Setter for AtomicVelocity.
69 *
70 * @param _newvelocity new velocity to set
71 */
72 void setAtomicVelocity(const Vector &_newvelocity);
73
74 /** Getter for AtomicForce.
75 *
76 * @return constant reference to AtomicForce
77 */
78 const Vector& getAtomicForce() const;
79 /** Setter for AtomicForce.
80 *
81 * @param _newvelocity new force vector to set
82 */
83 void setAtomicForce(const Vector &_newforce);
84
85 ///// manipulation of the atomic position
86
87 // Accessors ussually come in pairs... and sometimes even more than that
88 const double& operator[](size_t i) const;
89 const double& at(size_t i) const;
90 void set(size_t i, const double value);
91 const Vector& getPosition() const;
92
93 // Assignment operator
94 void setPosition(const Vector& _vector);
95 class VectorInterface &operator=(const Vector& _vector);
96
97 // operators for mathematical operations
98 const VectorInterface& operator+=(const Vector& b);
99 const VectorInterface& operator-=(const Vector& b);
100 Vector const operator+(const Vector& b) const;
101 Vector const operator-(const Vector& b) const;
102
103 void Zero();
104 void One(const double one);
105 void LinearCombinationOfVectors(const Vector &x1, const Vector &x2, const Vector &x3, const double * const factors);
106
107 double distance(const Vector &point) const;
108 double DistanceSquared(const Vector &y) const;
109 double distance(const VectorInterface &_atom) const;
110 double DistanceSquared(const VectorInterface &_atom) const;
111
112 void ScaleAll(const double *factor);
113 void ScaleAll(const Vector &factor);
114 void Scale(const double factor);
115
116 std::ostream & operator << (std::ostream &ost) const;
117
118private:
119 std::vector<Vector> AtomicPosition; //!< coordinate vector of atom, giving last position within cell
120 std::vector<Vector> AtomicVelocity; //!< velocity vector of atom, giving last velocity within cell
121 std::vector<Vector> AtomicForce; //!< Force vector of atom, giving last force within cell
122
123 const element *AtomicElement; //!< pointing to element
124};
125
126std::ostream & operator << (std::ostream &ost, const AtomInfo &a);
127
128const AtomInfo& operator*=(AtomInfo& a, const double m);
129AtomInfo const operator*(const AtomInfo& a, const double m);
130AtomInfo const operator*(const double m, const AtomInfo& a);
131
132#endif /* ATOM_ATOMINFO_HPP_ */
Note: See TracBrowser for help on using the repository browser.