source: src/Bond/bond.cpp@ ff4fff9

CombiningParticlePotentialParsing
Last change on this file since ff4fff9 was e23fec, checked in by Frederik Heber <heber@…>, 10 years ago

Renamed Bond::Contains to Bond::ContainsNr() and added ::ContainsId().

  • I just stumbled over this, trying to recreate bonds from removed atoms and Contains looks for the Nr not the Id ...
  • Property mode set to 100644
File size: 4.9 KB
Line 
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 */
48bond::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 */
61bond::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 */
77bond::~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
91ostream & 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 */
101atom * 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 */
118bool 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 */
127bool 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 */
136bool 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 */
144double 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 */
152double 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 */
161void 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
169void bond::setDegree(const int _degree)
170{
171 OBSERVE;
172 BondDegree = _degree;
173 NOTIFY(DegreeChanged);
174}
Note: See TracBrowser for help on using the repository browser.