1 | /*
|
---|
2 | * atom.hpp
|
---|
3 | *
|
---|
4 | * Created on: Aug 3, 2009
|
---|
5 | * Author: heber
|
---|
6 | */
|
---|
7 |
|
---|
8 | #ifndef ATOM_HPP_
|
---|
9 | #define ATOM_HPP_
|
---|
10 |
|
---|
11 | using namespace std;
|
---|
12 |
|
---|
13 | // include config.h
|
---|
14 | #ifdef HAVE_CONFIG_H
|
---|
15 | #include <config.h>
|
---|
16 | #endif
|
---|
17 |
|
---|
18 |
|
---|
19 | #include <iostream>
|
---|
20 | #include <vector>
|
---|
21 |
|
---|
22 | #include "element.hpp"
|
---|
23 | #include "tesselation.hpp"
|
---|
24 | #include "vector.hpp"
|
---|
25 |
|
---|
26 | /** Single atom.
|
---|
27 | * Class incorporates position, type
|
---|
28 | */
|
---|
29 | class atom : public TesselPoint {
|
---|
30 | public:
|
---|
31 | struct
|
---|
32 | {
|
---|
33 | vector<Vector> R; //!< position vector
|
---|
34 | vector<Vector> U; //!< velocity vector
|
---|
35 | vector<Vector> F; //!< last force vector
|
---|
36 | } Trajectory;
|
---|
37 |
|
---|
38 | Vector x; //!< coordinate vector of atom, giving last position within cell
|
---|
39 | Vector v; //!< velocity vector of atom, giving last velocity within cell
|
---|
40 | Vector F; //!< Force vector of atom, giving last force within cell
|
---|
41 | element *type; //!< pointing to element
|
---|
42 | atom *previous; //!< previous atom in molecule list
|
---|
43 | atom *next; //!< next atom in molecule list
|
---|
44 | atom *father; //!< In many-body bond order fragmentations points to originating atom
|
---|
45 | atom *Ancestor; //!< "Father" in Depth-First-Search
|
---|
46 | //char *Name; //!< unique name used during many-body bond-order fragmentation, comes from TesselPoint
|
---|
47 | int FixedIon; //!< config variable that states whether forces act on the ion or not
|
---|
48 | int *sort; //!< sort criteria
|
---|
49 | //int nr; //!< continuous, unique number, comes from TesselPoint
|
---|
50 | int GraphNr; //!< unique number, given in DepthFirstSearchAnalysis()
|
---|
51 | int *ComponentNr;//!< belongs to this nonseparable components, given in DepthFirstSearchAnalysis() (if more than one, then is SeparationVertex)
|
---|
52 | int LowpointNr; //!< needed in DepthFirstSearchAnalysis() to detect nonseparable components, is the lowest possible number of an atom to reach via tree edges only followed by at most one back edge.
|
---|
53 | bool SeparationVertex; //!< whether this atom separates off subsets of atoms or not, determined in DepthFirstSearchAnalysis()
|
---|
54 | bool IsCyclic; //!< whether atom belong to as cycle or not, determined in DepthFirstSearchAnalysis()
|
---|
55 | unsigned char AdaptiveOrder; //!< current present bond order at site (0 means "not set")
|
---|
56 | bool MaxOrder; //!< whether this atom as a root in fragmentation still creates more fragments on higher orders or not
|
---|
57 |
|
---|
58 | atom();
|
---|
59 | atom(class atom *pointer);
|
---|
60 | virtual ~atom();
|
---|
61 |
|
---|
62 | bool Output(ofstream *out, int ElementNo, int AtomNo, const char *comment = NULL) const;
|
---|
63 | bool Output(ofstream *out, int *ElementNo, int *AtomNo, const char *comment = NULL);
|
---|
64 | bool OutputXYZLine(ofstream *out) const;
|
---|
65 | bool OutputTrajectory(ofstream *out, int *ElementNo, int *AtomNo, int step) const;
|
---|
66 | bool OutputTrajectoryXYZ(ofstream *out, int step) const;
|
---|
67 |
|
---|
68 | void EqualsFather ( atom *ptr, atom **res );
|
---|
69 | void CorrectFather();
|
---|
70 | atom *GetTrueFather();
|
---|
71 | bool Compare(const atom &ptr);
|
---|
72 |
|
---|
73 | bool IsInParallelepiped(Vector offset, double *parallelepiped);
|
---|
74 |
|
---|
75 | ostream & operator << (ostream &ost);
|
---|
76 |
|
---|
77 | private:
|
---|
78 | };
|
---|
79 |
|
---|
80 |
|
---|
81 | ostream & operator << (ostream &ost, const atom &a);
|
---|
82 |
|
---|
83 | #endif /* ATOM_HPP_ */
|
---|