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