| 1 | /*
 | 
|---|
| 2 |  * Project: MoleCuilder
 | 
|---|
| 3 |  * Description: creates and alters molecular systems
 | 
|---|
| 4 |  * Copyright (C)  2010-2012 University of Bonn. All rights reserved.
 | 
|---|
| 5 |  * Copyright (C)  2013 Frederik Heber. All rights reserved.
 | 
|---|
| 6 |  * 
 | 
|---|
| 7 |  *
 | 
|---|
| 8 |  *   This file is part of MoleCuilder.
 | 
|---|
| 9 |  *
 | 
|---|
| 10 |  *    MoleCuilder is free software: you can redistribute it and/or modify
 | 
|---|
| 11 |  *    it under the terms of the GNU General Public License as published by
 | 
|---|
| 12 |  *    the Free Software Foundation, either version 2 of the License, or
 | 
|---|
| 13 |  *    (at your option) any later version.
 | 
|---|
| 14 |  *
 | 
|---|
| 15 |  *    MoleCuilder is distributed in the hope that it will be useful,
 | 
|---|
| 16 |  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
|---|
| 17 |  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
|---|
| 18 |  *    GNU General Public License for more details.
 | 
|---|
| 19 |  *
 | 
|---|
| 20 |  *    You should have received a copy of the GNU General Public License
 | 
|---|
| 21 |  *    along with MoleCuilder.  If not, see <http://www.gnu.org/licenses/>.
 | 
|---|
| 22 |  */
 | 
|---|
| 23 | 
 | 
|---|
| 24 | /** \file Bond.cpp
 | 
|---|
| 25 |  * 
 | 
|---|
| 26 |  * Function implementations for the classes BondLeaf, BondTree and bond.
 | 
|---|
| 27 |  * 
 | 
|---|
| 28 |  */
 | 
|---|
| 29 | 
 | 
|---|
| 30 | // include config.h
 | 
|---|
| 31 | #ifdef HAVE_CONFIG_H
 | 
|---|
| 32 | #include <config.h>
 | 
|---|
| 33 | #endif
 | 
|---|
| 34 | 
 | 
|---|
| 35 | //#include "CodePatterns/MemDebug.hpp"
 | 
|---|
| 36 | 
 | 
|---|
| 37 | #include "CodePatterns/Log.hpp"
 | 
|---|
| 38 | #include "CodePatterns/Verbose.hpp"
 | 
|---|
| 39 | #include "Atom/atom.hpp"
 | 
|---|
| 40 | #include "Bond/bond.hpp"
 | 
|---|
| 41 | #include "Element/element.hpp"
 | 
|---|
| 42 | 
 | 
|---|
| 43 | 
 | 
|---|
| 44 | /***************************************** Functions for class bond::ptr *******************************/
 | 
|---|
| 45 | 
 | 
|---|
| 46 | /** Empty Constructor for class bond.
 | 
|---|
| 47 |  */
 | 
|---|
| 48 | bond::bond() :
 | 
|---|
| 49 |   leftatom(NULL),
 | 
|---|
| 50 |   rightatom(NULL),
 | 
|---|
| 51 |   HydrogenBond(0),
 | 
|---|
| 52 |   BondDegree(0)
 | 
|---|
| 53 | {};
 | 
|---|
| 54 | 
 | 
|---|
| 55 | /** Constructor for class bond, taking right and left bond partner
 | 
|---|
| 56 |  * \param *left left atom
 | 
|---|
| 57 |  * \param *right right atom
 | 
|---|
| 58 |  * \param degree bond degree
 | 
|---|
| 59 |  * \param number increasing index
 | 
|---|
| 60 |  */
 | 
|---|
| 61 | bond::bond(atom *left, atom *right, const int degree) :
 | 
|---|
| 62 |   leftatom(left),
 | 
|---|
| 63 |   rightatom(right),
 | 
|---|
| 64 |   HydrogenBond(0),
 | 
|---|
| 65 |   BondDegree(degree)
 | 
|---|
| 66 | {
 | 
|---|
| 67 |   if ((left != NULL) && (right != NULL)) {
 | 
|---|
| 68 |     if ((left->getType() != NULL) && (left->getType()->getAtomicNumber() == 1))
 | 
|---|
| 69 |       HydrogenBond++;
 | 
|---|
| 70 |     if ((right->getType() != NULL) && (right->getType()->getAtomicNumber() == 1))
 | 
|---|
| 71 |       HydrogenBond++;
 | 
|---|
| 72 |   }
 | 
|---|
| 73 | };
 | 
|---|
| 74 | 
 | 
|---|
| 75 | /** Empty Destructor for class bond.
 | 
|---|
| 76 |  */
 | 
|---|
| 77 | bond::~bond()
 | 
|---|
| 78 | {
 | 
|---|
| 79 |   // first signal destruction of this bond
 | 
|---|
| 80 |   {
 | 
|---|
| 81 |     OBSERVE;
 | 
|---|
| 82 |     NOTIFY(BondRemoved);
 | 
|---|
| 83 |   }
 | 
|---|
| 84 |   // atoms should have been destroyed and NULL'd their entry already
 | 
|---|
| 85 |   ASSERT (leftatom == NULL,
 | 
|---|
| 86 |       "~bond() - leftatom is not NULL.");
 | 
|---|
| 87 |   ASSERT (rightatom == NULL,
 | 
|---|
| 88 |       "~bond() - rightatom is not NULL.");
 | 
|---|
| 89 | };
 | 
|---|
| 90 | 
 | 
|---|
| 91 | ostream & operator << (ostream &ost, const bond &b)
 | 
|---|
| 92 | {
 | 
|---|
| 93 |   ost << "[" << b.leftatom->getName() << " <" << b.getDegree() << "(H" << b.HydrogenBond << ")>" << b.rightatom->getName() << "]";
 | 
|---|
| 94 |   return ost;
 | 
|---|
| 95 | };
 | 
|---|
| 96 | 
 | 
|---|
| 97 | /** Get the other atom in a bond if one is specified.
 | 
|---|
| 98 |  * \param *Atom the pointer to the one atom
 | 
|---|
| 99 |  * \return pointer to the other atom in the bond, NULL if no match (indicates something's wrong with the bond) 
 | 
|---|
| 100 |  */
 | 
|---|
| 101 | atom * bond::GetOtherAtom(const ParticleInfo * const Atom) const
 | 
|---|
| 102 | {
 | 
|---|
| 103 |   ASSERT( (leftatom != NULL) && (rightatom != NULL),
 | 
|---|
| 104 |       "bond::GetOtherAtom() - one of the atoms refs is NULL.");
 | 
|---|
| 105 |   if(leftatom == Atom) 
 | 
|---|
| 106 |     return rightatom;
 | 
|---|
| 107 |   if(rightatom == Atom) 
 | 
|---|
| 108 |     return leftatom;
 | 
|---|
| 109 |   ELOG(1, "Bond " << *this << " does not contain atom " << *Atom << "!");
 | 
|---|
| 110 |   return NULL;
 | 
|---|
| 111 | };
 | 
|---|
| 112 | 
 | 
|---|
| 113 | 
 | 
|---|
| 114 | /** Checks if an atom exists in a bond.
 | 
|---|
| 115 |  * \param *ptr pointer to atom
 | 
|---|
| 116 |  * \return true if it is either bond::leftatom or bond::rightatom, false otherwise
 | 
|---|
| 117 |  */
 | 
|---|
| 118 | bool bond::Contains(const ParticleInfo * const ptr) const
 | 
|---|
| 119 | {
 | 
|---|
| 120 |   return ((leftatom == ptr) || (rightatom == ptr));
 | 
|---|
| 121 | };
 | 
|---|
| 122 | 
 | 
|---|
| 123 | /** Checks if an atom exists in a bond.
 | 
|---|
| 124 |  * \param Nr index of atom
 | 
|---|
| 125 |  * \return true if it is either bond::leftatom or bond::rightatom, false otherwise
 | 
|---|
| 126 |  */
 | 
|---|
| 127 | bool bond::ContainsNr(const int number) const
 | 
|---|
| 128 | {
 | 
|---|
| 129 |   return ((leftatom->getNr() == number) || (rightatom->getNr() == number));
 | 
|---|
| 130 | };
 | 
|---|
| 131 | 
 | 
|---|
| 132 | /** Checks if an atom exists in a bond.
 | 
|---|
| 133 |  * \param Nr index of atom
 | 
|---|
| 134 |  * \return true if it is either bond::leftatom or bond::rightatom, false otherwise
 | 
|---|
| 135 |  */
 | 
|---|
| 136 | bool bond::ContainsId(const atomId_t number) const
 | 
|---|
| 137 | {
 | 
|---|
| 138 |   return ((leftatom->getId() == number) || (rightatom->getId() == number));
 | 
|---|
| 139 | };
 | 
|---|
| 140 | 
 | 
|---|
| 141 | /** Calculates the bond length.
 | 
|---|
| 142 |  * \return |a - b| with a = bond::leftatom and b = bond::rightatom.
 | 
|---|
| 143 |  */
 | 
|---|
| 144 | double bond::GetDistance() const
 | 
|---|
| 145 | {
 | 
|---|
| 146 |   return (leftatom->distance(*rightatom));
 | 
|---|
| 147 | };
 | 
|---|
| 148 | 
 | 
|---|
| 149 | /** Calculates the bond length.
 | 
|---|
| 150 |  * \return |a - b|^2 with a = bond::leftatom and b = bond::rightatom.
 | 
|---|
| 151 |  */
 | 
|---|
| 152 | double bond::GetDistanceSquared() const
 | 
|---|
| 153 | {
 | 
|---|
| 154 |   return (leftatom->DistanceSquared(*rightatom));
 | 
|---|
| 155 | };
 | 
|---|
| 156 | 
 | 
|---|
| 157 | /** Sets either leftatom or rightatom to NULL.
 | 
|---|
| 158 |  *
 | 
|---|
| 159 |  * \param Atom atom to remove
 | 
|---|
| 160 |  */
 | 
|---|
| 161 | void bond::removeAtom(const ParticleInfo * const Atom)
 | 
|---|
| 162 | {
 | 
|---|
| 163 |   if (static_cast<const ParticleInfo *>(leftatom) == Atom)
 | 
|---|
| 164 |     leftatom = NULL;
 | 
|---|
| 165 |   if (static_cast<const ParticleInfo *>(rightatom) == Atom)
 | 
|---|
| 166 |     rightatom = NULL;
 | 
|---|
| 167 | }
 | 
|---|
| 168 | 
 | 
|---|
| 169 | void bond::setDegree(const int _degree)
 | 
|---|
| 170 | {
 | 
|---|
| 171 |   OBSERVE;
 | 
|---|
| 172 |   BondDegree = _degree;
 | 
|---|
| 173 |   NOTIFY(DegreeChanged);
 | 
|---|
| 174 | }
 | 
|---|