1 | /*
|
---|
2 | * Project: MoleCuilder
|
---|
3 | * Description: creates and alters molecular systems
|
---|
4 | * Copyright (C) 2010 University of Bonn. All rights reserved.
|
---|
5 | * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
|
---|
6 | */
|
---|
7 |
|
---|
8 | /** \file Bond.cpp
|
---|
9 | *
|
---|
10 | * Function implementations for the classes BondLeaf, BondTree and bond.
|
---|
11 | *
|
---|
12 | */
|
---|
13 |
|
---|
14 | // include config.h
|
---|
15 | #ifdef HAVE_CONFIG_H
|
---|
16 | #include <config.h>
|
---|
17 | #endif
|
---|
18 |
|
---|
19 | #include "CodePatterns/MemDebug.hpp"
|
---|
20 |
|
---|
21 | #include "CodePatterns/Log.hpp"
|
---|
22 | #include "CodePatterns/Verbose.hpp"
|
---|
23 | #include "atom.hpp"
|
---|
24 | #include "Bond/bond.hpp"
|
---|
25 | #include "Element/element.hpp"
|
---|
26 |
|
---|
27 |
|
---|
28 | /***************************************** Functions for class bond ********************************/
|
---|
29 |
|
---|
30 | /** Empty Constructor for class bond.
|
---|
31 | */
|
---|
32 | bond::bond() :
|
---|
33 | leftatom(NULL),
|
---|
34 | rightatom(NULL),
|
---|
35 | HydrogenBond(0),
|
---|
36 | BondDegree(0)
|
---|
37 | {};
|
---|
38 |
|
---|
39 | /** Constructor for class bond, taking right and left bond partner
|
---|
40 | * \param *left left atom
|
---|
41 | * \param *right right atom
|
---|
42 | * \param degree bond degree
|
---|
43 | * \param number increasing index
|
---|
44 | */
|
---|
45 | bond::bond(atom *left, atom *right, const int degree) :
|
---|
46 | leftatom(left),
|
---|
47 | rightatom(right),
|
---|
48 | HydrogenBond(0),
|
---|
49 | BondDegree(degree)
|
---|
50 | {
|
---|
51 | if ((left != NULL) && (right != NULL)) {
|
---|
52 | if ((left->getType() != NULL) && (left->getType()->getAtomicNumber() == 1))
|
---|
53 | HydrogenBond++;
|
---|
54 | if ((right->getType() != NULL) && (right->getType()->getAtomicNumber() == 1))
|
---|
55 | HydrogenBond++;
|
---|
56 | }
|
---|
57 | };
|
---|
58 |
|
---|
59 | /** Empty Destructor for class bond.
|
---|
60 | */
|
---|
61 | bond::~bond()
|
---|
62 | {
|
---|
63 | // remove this node from the list structure
|
---|
64 | if (leftatom != NULL)
|
---|
65 | leftatom->removeBond(this);
|
---|
66 | // there might be self-bonds
|
---|
67 | if ((leftatom != rightatom) && (rightatom != NULL))
|
---|
68 | rightatom->removeBond(this);
|
---|
69 | };
|
---|
70 |
|
---|
71 | ostream & operator << (ostream &ost, const bond &b)
|
---|
72 | {
|
---|
73 | ost << "[" << b.leftatom->getName() << " <" << b.BondDegree << "(H" << b.HydrogenBond << ")>" << b.rightatom->getName() << "]";
|
---|
74 | return ost;
|
---|
75 | };
|
---|
76 |
|
---|
77 | /** Get the other atom in a bond if one is specified.
|
---|
78 | * \param *Atom the pointer to the one atom
|
---|
79 | * \return pointer to the other atom in the bond, NULL if no match (indicates something's wrong with the bond)
|
---|
80 | */
|
---|
81 | atom * bond::GetOtherAtom(const ParticleInfo * const Atom) const
|
---|
82 | {
|
---|
83 | if(leftatom == Atom)
|
---|
84 | return rightatom;
|
---|
85 | if(rightatom == Atom)
|
---|
86 | return leftatom;
|
---|
87 | ELOG(1, "Bond " << *this << " does not contain atom " << *Atom << "!");
|
---|
88 | return NULL;
|
---|
89 | };
|
---|
90 |
|
---|
91 |
|
---|
92 | /** Checks if an atom exists in a bond.
|
---|
93 | * \param *ptr pointer to atom
|
---|
94 | * \return true if it is either bond::leftatom or bond::rightatom, false otherwise
|
---|
95 | */
|
---|
96 | bool bond::Contains(const ParticleInfo * const ptr) const
|
---|
97 | {
|
---|
98 | return ((leftatom == ptr) || (rightatom == ptr));
|
---|
99 | };
|
---|
100 |
|
---|
101 | /** Checks if an atom exists in a bond.
|
---|
102 | * \param Nr index of atom
|
---|
103 | * \return true if it is either bond::leftatom or bond::rightatom, false otherwise
|
---|
104 | */
|
---|
105 | bool bond::Contains(const int number) const
|
---|
106 | {
|
---|
107 | return ((leftatom->getNr() == number) || (rightatom->getNr() == number));
|
---|
108 | };
|
---|
109 |
|
---|
110 | /** Calculates the bond length.
|
---|
111 | * \return |a - b| with a = bond::leftatom and b = bond::rightatom.
|
---|
112 | */
|
---|
113 | double bond::GetDistance() const
|
---|
114 | {
|
---|
115 | return (leftatom->distance(*rightatom));
|
---|
116 | };
|
---|
117 |
|
---|
118 | /** Calculates the bond length.
|
---|
119 | * \return |a - b|^2 with a = bond::leftatom and b = bond::rightatom.
|
---|
120 | */
|
---|
121 | double bond::GetDistanceSquared() const
|
---|
122 | {
|
---|
123 | return (leftatom->DistanceSquared(*rightatom));
|
---|
124 | };
|
---|