source: src/atom_atominfo.hpp@ bce72c

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

AtomicInfo::AtomicVelocity and ::AtomicForce are now private.

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