[bcf653] | 1 | /*
|
---|
| 2 | * Project: MoleCuilder
|
---|
| 3 | * Description: creates and alters molecular systems
|
---|
[0aa122] | 4 | * Copyright (C) 2010-2012 University of Bonn. All rights reserved.
|
---|
[94d5ac6] | 5 | *
|
---|
| 6 | *
|
---|
| 7 | * This file is part of MoleCuilder.
|
---|
| 8 | *
|
---|
| 9 | * MoleCuilder is free software: you can redistribute it and/or modify
|
---|
| 10 | * it under the terms of the GNU General Public License as published by
|
---|
| 11 | * the Free Software Foundation, either version 2 of the License, or
|
---|
| 12 | * (at your option) any later version.
|
---|
| 13 | *
|
---|
| 14 | * MoleCuilder is distributed in the hope that it will be useful,
|
---|
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 17 | * GNU General Public License for more details.
|
---|
| 18 | *
|
---|
| 19 | * You should have received a copy of the GNU General Public License
|
---|
| 20 | * along with MoleCuilder. If not, see <http://www.gnu.org/licenses/>.
|
---|
[bcf653] | 21 | */
|
---|
| 22 |
|
---|
[6b919f8] | 23 | /*
|
---|
| 24 | * atom_bondedparticle.cpp
|
---|
| 25 | *
|
---|
| 26 | * Created on: Oct 19, 2009
|
---|
| 27 | * Author: heber
|
---|
| 28 | */
|
---|
| 29 |
|
---|
[bf3817] | 30 | // include config.h
|
---|
| 31 | #ifdef HAVE_CONFIG_H
|
---|
| 32 | #include <config.h>
|
---|
| 33 | #endif
|
---|
| 34 |
|
---|
[ad011c] | 35 | #include "CodePatterns/MemDebug.hpp"
|
---|
[112b09] | 36 |
|
---|
[f63e41] | 37 | #include <algorithm>
|
---|
| 38 | #include <boost/bind.hpp>
|
---|
| 39 |
|
---|
[6b919f8] | 40 | #include "atom.hpp"
|
---|
| 41 | #include "atom_bondedparticle.hpp"
|
---|
[129204] | 42 | #include "Bond/bond.hpp"
|
---|
[d557374] | 43 | #include "CodePatterns/Assert.hpp"
|
---|
[ad011c] | 44 | #include "CodePatterns/Log.hpp"
|
---|
| 45 | #include "CodePatterns/Verbose.hpp"
|
---|
[3bdb6d] | 46 | #include "Element/element.hpp"
|
---|
[db7e6d] | 47 | #include "WorldTime.hpp"
|
---|
[6b919f8] | 48 |
|
---|
| 49 | /** Constructor of class BondedParticle.
|
---|
| 50 | */
|
---|
[70ff32] | 51 | BondedParticle::BondedParticle()
|
---|
| 52 | {
|
---|
[9d83b6] | 53 | ListOfBonds.push_back(BondList());
|
---|
[70ff32] | 54 | };
|
---|
[6b919f8] | 55 |
|
---|
| 56 | /** Destructor of class BondedParticle.
|
---|
| 57 | */
|
---|
| 58 | BondedParticle::~BondedParticle()
|
---|
| 59 | {
|
---|
[5e2f80] | 60 | removeAllBonds();
|
---|
[6b919f8] | 61 | };
|
---|
| 62 |
|
---|
| 63 | /** Outputs the current atom::AdaptiveOrder and atom::MaxOrder to \a *file.
|
---|
| 64 | * \param *file output stream
|
---|
| 65 | */
|
---|
[b453f9] | 66 | void BondedParticle::OutputOrder(ofstream *file) const
|
---|
[6b919f8] | 67 | {
|
---|
[735b1c] | 68 | *file << getNr() << "\t" << (int)AdaptiveOrder << "\t" << (int)MaxOrder << endl;
|
---|
[47d041] | 69 | //LOG(2, "Storing: " << getNr() << "\t" << (int)AdaptiveOrder << "\t" << (int)MaxOrder << ".");
|
---|
[6b919f8] | 70 | };
|
---|
| 71 |
|
---|
| 72 | /** Prints all bonds of this atom with total degree.
|
---|
| 73 | */
|
---|
[4b5cf8] | 74 | void BondedParticle::OutputBondOfAtom(std::ostream &ost) const
|
---|
[6b919f8] | 75 | {
|
---|
[9d83b6] | 76 | const BondList& ListOfBonds = getListOfBonds();
|
---|
[4b5cf8] | 77 | ost << "Atom " << getName() << "/" << getNr() << " with " << ListOfBonds.size() << " bonds: ";
|
---|
[e138de] | 78 | int TotalDegree = 0;
|
---|
| 79 | for (BondList::const_iterator Runner = ListOfBonds.begin(); Runner != ListOfBonds.end(); ++Runner) {
|
---|
[4b5cf8] | 80 | ost << **Runner << "\t";
|
---|
[e138de] | 81 | TotalDegree += (*Runner)->BondDegree;
|
---|
| 82 | }
|
---|
[4b5cf8] | 83 | ost << " -- TotalDegree: " << TotalDegree;
|
---|
[6b919f8] | 84 | };
|
---|
| 85 |
|
---|
[5309ba] | 86 | /** Output of atom::Nr along each bond partner per line.
|
---|
| 87 | * Only bonds are printed where atom::Nr is smaller than the one of the bond partner.
|
---|
[1f1b23] | 88 | * \param *AdjacencyFile output stream
|
---|
| 89 | */
|
---|
| 90 | void BondedParticle::OutputBonds(ofstream * const BondFile) const
|
---|
| 91 | {
|
---|
[9d83b6] | 92 | const BondList& ListOfBonds = getListOfBonds();
|
---|
[1f1b23] | 93 | for (BondList::const_iterator Runner = ListOfBonds.begin(); Runner != ListOfBonds.end(); (++Runner))
|
---|
[735b1c] | 94 | if (getNr() < (*Runner)->GetOtherAtom(this)->getNr())
|
---|
[52ed5b] | 95 | *BondFile << getNr() << "\t" << (*Runner)->GetOtherAtom(this)->getNr() << "\n";
|
---|
[1f1b23] | 96 | };
|
---|
| 97 |
|
---|
[b8d4a3] | 98 | /**
|
---|
[db7e6d] | 99 | * Adds a bond between this bonded particle and another. Returns present instance if this
|
---|
[b8d4a3] | 100 | * bond already exists.
|
---|
| 101 | *
|
---|
[073a9e4] | 102 | * @param _step time step to access
|
---|
[db7e6d] | 103 | * @param bonding partner
|
---|
[05a885] | 104 | * @return const pointer to created bond or to already present bonds
|
---|
[b8d4a3] | 105 | */
|
---|
[05a885] | 106 | bond * const BondedParticle::addBond(const unsigned int _step, BondedParticle* Partner)
|
---|
[db7e6d] | 107 | {
|
---|
| 108 | const BondList &bondlist = getListOfBondsAtStep(_step);
|
---|
| 109 | for (BondList::const_iterator runner = bondlist.begin();
|
---|
| 110 | runner != bondlist.end();
|
---|
| 111 | runner++) {
|
---|
| 112 | if ((*runner)->Contains(Partner))
|
---|
| 113 | return *runner;
|
---|
[b8d4a3] | 114 | }
|
---|
| 115 |
|
---|
[efe516] | 116 | bond* newBond = new bond((atom*) this, (atom*) Partner, 1);
|
---|
[073a9e4] | 117 | RegisterBond(_step, newBond);
|
---|
| 118 | Partner->RegisterBond(_step, newBond);
|
---|
[db7e6d] | 119 |
|
---|
| 120 | return newBond;
|
---|
| 121 | }
|
---|
| 122 |
|
---|
[f63e41] | 123 | /** Removes a bond of this atom to a given \a Partner.
|
---|
| 124 | *
|
---|
| 125 | * @param _step time step
|
---|
| 126 | * @param Partner bond partner
|
---|
| 127 | */
|
---|
| 128 | void BondedParticle::removeBond(const unsigned int _step, BondedParticle * const Partner)
|
---|
| 129 | {
|
---|
| 130 | const BondList& ListOfBonds = getListOfBondsAtStep(_step);
|
---|
| 131 | BondList::const_iterator iter = std::find_if(ListOfBonds.begin(), ListOfBonds.end(),
|
---|
| 132 | boost::bind(
|
---|
| 133 | static_cast<bool (bond::*)(const ParticleInfo * const) const>(&bond::Contains),
|
---|
| 134 | _1,
|
---|
| 135 | boost::cref(Partner)));
|
---|
| 136 | if (iter != ListOfBonds.end()) {
|
---|
| 137 | delete *iter; //dstor takes care of unregistering and all
|
---|
| 138 | } else
|
---|
| 139 | ELOG(1, "BondedParticle::removeBond() - I cannot find the bond in between "
|
---|
| 140 | +toString(getName())+" and "+toString(Partner->getName())+".");
|
---|
| 141 | }
|
---|
| 142 |
|
---|
[db7e6d] | 143 | /** Removes a bond for this atom.
|
---|
| 144 | *
|
---|
| 145 | * @param Binder bond to remove
|
---|
| 146 | */
|
---|
| 147 | void BondedParticle::removeBond(bond * binder)
|
---|
| 148 | {
|
---|
| 149 | UnregisterBond(binder);
|
---|
[b8d4a3] | 150 | }
|
---|
| 151 |
|
---|
[cc9119] | 152 | /** Removes all bonds in all timesteps and their instances, too.
|
---|
[5e2f80] | 153 | *
|
---|
| 154 | */
|
---|
| 155 | void BondedParticle::removeAllBonds()
|
---|
| 156 | {
|
---|
| 157 | for (size_t index = 0; index < ListOfBonds.size(); ++index)
|
---|
[cc9119] | 158 | removeAllBonds(index);
|
---|
| 159 | }
|
---|
| 160 |
|
---|
| 161 | /** Removes all bonds for a given \a _step and their instances, too.
|
---|
| 162 | *
|
---|
| 163 | * @param _step time step to access
|
---|
| 164 | */
|
---|
| 165 | void BondedParticle::removeAllBonds(const unsigned int _step)
|
---|
| 166 | {
|
---|
| 167 | for (BondList::iterator iter = ListOfBonds[_step].begin();
|
---|
| 168 | !ListOfBonds[_step].empty();
|
---|
| 169 | iter = ListOfBonds[_step].begin()) {
|
---|
| 170 | delete (*iter);
|
---|
| 171 | // unregister/NOTIFY is done by bond::~bond()
|
---|
[5e2f80] | 172 | }
|
---|
| 173 | }
|
---|
| 174 |
|
---|
[6b919f8] | 175 | /** Puts a given bond into atom::ListOfBonds.
|
---|
[073a9e4] | 176 | * @param _step time step to access
|
---|
[6b919f8] | 177 | * \param *Binder bond to insert
|
---|
| 178 | */
|
---|
[05a885] | 179 | bool BondedParticle::RegisterBond(const unsigned int _step, bond * const Binder)
|
---|
[6b919f8] | 180 | {
|
---|
[db7e6d] | 181 | OBSERVE;
|
---|
[6b919f8] | 182 | bool status = false;
|
---|
| 183 | if (Binder != NULL) {
|
---|
| 184 | if (Binder->Contains(this)) {
|
---|
[d557374] | 185 | //LOG(3,"INFO: Registering bond "<< *Binder << " with atom " << *this << " at step " << _step);
|
---|
[5e2f80] | 186 | if (ListOfBonds.size() <= _step)
|
---|
| 187 | ListOfBonds.resize(_step+1);
|
---|
| 188 | ListOfBonds[_step].push_back(Binder);
|
---|
[74ec1f] | 189 | if (WorldTime::getTime() == _step)
|
---|
[2ad1ec] | 190 | NOTIFY(AtomObservable::BondsAdded);
|
---|
[6b919f8] | 191 | status = true;
|
---|
| 192 | } else {
|
---|
[47d041] | 193 | ELOG(1, *Binder << " does not contain " << *this << ".");
|
---|
[6b919f8] | 194 | }
|
---|
| 195 | } else {
|
---|
[47d041] | 196 | ELOG(1, "Binder is " << Binder << ".");
|
---|
[6b919f8] | 197 | }
|
---|
| 198 | return status;
|
---|
| 199 | };
|
---|
| 200 |
|
---|
| 201 | /** Removes a given bond from atom::ListOfBonds.
|
---|
[9d83b6] | 202 | * @param _step time step to access
|
---|
[6b919f8] | 203 | * \param *Binder bond to remove
|
---|
| 204 | */
|
---|
[05a885] | 205 | bool BondedParticle::UnregisterBond(bond * const Binder)
|
---|
[6b919f8] | 206 | {
|
---|
[db7e6d] | 207 | OBSERVE;
|
---|
[6b919f8] | 208 | bool status = false;
|
---|
[d557374] | 209 | ASSERT(Binder != NULL, "BondedParticle::UnregisterBond() - Binder is NULL.");
|
---|
| 210 | const int step = ContainsBondAtStep(Binder);
|
---|
| 211 | if (step != -1) {
|
---|
[5e2f80] | 212 | //LOG(0,"INFO: Unregistering bond "<< *Binder << " from list " << &ListOfBonds << " of atom " << *this << " at step " << step);
|
---|
[d557374] | 213 | ListOfBonds[step].remove(Binder);
|
---|
[760c4c] | 214 | if (WorldTime::getTime() == step)
|
---|
| 215 | NOTIFY(AtomObservable::BondsRemoved);
|
---|
[d557374] | 216 | status = true;
|
---|
[6b919f8] | 217 | } else {
|
---|
[47d041] | 218 | ELOG(1, *Binder << " does not contain " << *this << ".");
|
---|
[6b919f8] | 219 | }
|
---|
| 220 | return status;
|
---|
| 221 | };
|
---|
| 222 |
|
---|
| 223 | /** Removes all bonds from atom::ListOfBonds.
|
---|
| 224 | * \note Does not do any memory de-allocation.
|
---|
| 225 | */
|
---|
[a2bdbe] | 226 | void BondedParticle::UnregisterAllBond(const unsigned int _step)
|
---|
[6b919f8] | 227 | {
|
---|
[74ec1f] | 228 | OBSERVE;
|
---|
[760c4c] | 229 | NOTIFY(AtomObservable::BondsRemoved);
|
---|
[af897f] | 230 | ListOfBonds[_step].clear();
|
---|
| 231 | }
|
---|
[6b919f8] | 232 |
|
---|
[583081] | 233 | /** Removes all bonds of given \a _step with freeing memory.
|
---|
| 234 | *
|
---|
| 235 | * @param _step time step whose bonds to free
|
---|
| 236 | */
|
---|
| 237 | void BondedParticle::ClearBondsAtStep(const unsigned int _step)
|
---|
| 238 | {
|
---|
[db7e6d] | 239 | OBSERVE;
|
---|
[760c4c] | 240 | NOTIFY(AtomObservable::BondsRemoved);
|
---|
[583081] | 241 | //LOG(3,"INFO: Clearing all bonds of " << *this << ": " << ListOfBonds[_step]);
|
---|
| 242 | for (BondList::iterator iter = (ListOfBonds[_step]).begin();
|
---|
| 243 | !(ListOfBonds[_step]).empty();
|
---|
| 244 | iter = (ListOfBonds[_step]).begin()) {
|
---|
| 245 | //LOG(3,"INFO: Clearing bond (" << *iter << ") " << *(*iter) << " of list " << &ListOfBonds);
|
---|
| 246 | delete((*iter)); // will also unregister with us and remove from list
|
---|
| 247 | }
|
---|
| 248 | }
|
---|
| 249 |
|
---|
[93c6e9] | 250 | /** Searches for the time step where the given bond \a *Binder is a bond of this particle.
|
---|
| 251 | *
|
---|
| 252 | * @param Binder bond to check
|
---|
| 253 | * @return >=0 - first time step where bond appears, -1 - bond not present in lists
|
---|
| 254 | */
|
---|
[db7e6d] | 255 | int BondedParticle::ContainsBondAtStep(bond *Binder) const
|
---|
[93c6e9] | 256 | {
|
---|
| 257 | int step = -1;
|
---|
| 258 | int tempstep = 0;
|
---|
| 259 | for(std::vector<BondList>::const_iterator iter = ListOfBonds.begin();
|
---|
| 260 | iter != ListOfBonds.end();
|
---|
| 261 | ++iter,++tempstep) {
|
---|
| 262 | for (BondList::const_iterator bonditer = iter->begin();
|
---|
| 263 | bonditer != iter->end();
|
---|
| 264 | ++bonditer) {
|
---|
| 265 | if ((*bonditer) == Binder) {
|
---|
| 266 | step = tempstep;
|
---|
| 267 | break;
|
---|
| 268 | }
|
---|
| 269 | }
|
---|
| 270 | if (step != -1)
|
---|
| 271 | break;
|
---|
| 272 | }
|
---|
| 273 |
|
---|
| 274 | return step;
|
---|
| 275 | }
|
---|
| 276 |
|
---|
[6b919f8] | 277 | /** Corrects the bond degree by one at most if necessary.
|
---|
[93c6e9] | 278 | * \return number of corrections done
|
---|
[6b919f8] | 279 | */
|
---|
[e138de] | 280 | int BondedParticle::CorrectBondDegree()
|
---|
[6b919f8] | 281 | {
|
---|
[db7e6d] | 282 | OBSERVE;
|
---|
[74ec1f] | 283 | NOTIFY(AtomObservable::BondDegreeChanged);
|
---|
[6b919f8] | 284 | int NoBonds = 0;
|
---|
| 285 | int OtherNoBonds = 0;
|
---|
| 286 | int FalseBondDegree = 0;
|
---|
| 287 | atom *OtherWalker = NULL;
|
---|
| 288 | bond *CandidateBond = NULL;
|
---|
| 289 |
|
---|
| 290 | NoBonds = CountBonds();
|
---|
[47d041] | 291 | //LOG(3, "Walker " << *this << ": " << (int)this->type->NoValenceOrbitals << " > " << NoBonds << "?");
|
---|
[83f176] | 292 | if ((int)(getType()->getNoValenceOrbitals()) > NoBonds) { // we have a mismatch, check all bonding partners for mismatch
|
---|
[9d83b6] | 293 | const BondList& ListOfBonds = getListOfBonds();
|
---|
[6b919f8] | 294 | for (BondList::const_iterator Runner = ListOfBonds.begin(); Runner != ListOfBonds.end(); (++Runner)) {
|
---|
| 295 | OtherWalker = (*Runner)->GetOtherAtom(this);
|
---|
| 296 | OtherNoBonds = OtherWalker->CountBonds();
|
---|
[47d041] | 297 | //LOG(3, "OtherWalker " << *OtherWalker << ": " << (int)OtherWalker->type->NoValenceOrbitals << " > " << OtherNoBonds << "?");
|
---|
[83f176] | 298 | if ((int)(OtherWalker->getType()->getNoValenceOrbitals()) > OtherNoBonds) { // check if possible candidate
|
---|
[9d83b6] | 299 | const BondList& OtherListOfBonds = OtherWalker->getListOfBonds();
|
---|
| 300 | if ((CandidateBond == NULL) || (ListOfBonds.size() > OtherListOfBonds.size())) { // pick the one with fewer number of bonds first
|
---|
[6b919f8] | 301 | CandidateBond = (*Runner);
|
---|
[47d041] | 302 | //LOG(3, "New candidate is " << *CandidateBond << ".");
|
---|
[6b919f8] | 303 | }
|
---|
| 304 | }
|
---|
| 305 | }
|
---|
| 306 | if ((CandidateBond != NULL)) {
|
---|
| 307 | CandidateBond->BondDegree++;
|
---|
[47d041] | 308 | //LOG(2, "Increased bond degree for bond " << *CandidateBond << ".");
|
---|
[6b919f8] | 309 | } else {
|
---|
[47d041] | 310 | ELOG(2, "Could not find correct degree for atom " << *this << ".");
|
---|
[6b919f8] | 311 | FalseBondDegree++;
|
---|
| 312 | }
|
---|
| 313 | }
|
---|
| 314 | return FalseBondDegree;
|
---|
| 315 | };
|
---|
| 316 |
|
---|
[5e2f80] | 317 | /** Sets the weight of all connected bonds to one.
|
---|
| 318 | */
|
---|
| 319 | void BondedParticle::resetBondDegree()
|
---|
| 320 | {
|
---|
| 321 | OBSERVE;
|
---|
[74ec1f] | 322 | NOTIFY(BondedParticle::BondDegreeChanged);
|
---|
[5e2f80] | 323 | for (std::vector<BondList>::iterator Runner = ListOfBonds.begin();
|
---|
| 324 | Runner != ListOfBonds.end();
|
---|
| 325 | ++Runner)
|
---|
| 326 | for (BondList::iterator BondRunner = (*Runner).begin();
|
---|
| 327 | BondRunner != (*Runner).end();
|
---|
| 328 | ++BondRunner)
|
---|
| 329 | (*BondRunner)->BondDegree = 1;
|
---|
| 330 | };
|
---|
| 331 |
|
---|
[c0d9eb] | 332 | /** Counts the number of bonds weighted by bond::BondDegree.
|
---|
| 333 | * @param _step time step to access
|
---|
| 334 | * \param bonds times bond::BondDegree
|
---|
| 335 | */
|
---|
| 336 | int BondedParticle::CountBonds() const
|
---|
| 337 | {
|
---|
| 338 | int NoBonds = 0;
|
---|
[9d83b6] | 339 | const BondList& ListOfBonds = getListOfBonds();
|
---|
[c0d9eb] | 340 | for (BondList::const_iterator Runner = ListOfBonds.begin();
|
---|
| 341 | Runner != ListOfBonds.end();
|
---|
| 342 | (++Runner))
|
---|
| 343 | NoBonds += (*Runner)->BondDegree;
|
---|
| 344 | return NoBonds;
|
---|
| 345 | };
|
---|
| 346 |
|
---|
[b70721] | 347 | /** Checks whether there is a bond between \a this atom and the given \a *BondPartner.
|
---|
[073a9e4] | 348 | * @param _step time step to access
|
---|
[b70721] | 349 | * \param *BondPartner atom to check for
|
---|
| 350 | * \return true - bond exists, false - bond does not exist
|
---|
| 351 | */
|
---|
[073a9e4] | 352 | bool BondedParticle::IsBondedTo(const unsigned int _step, BondedParticle * const BondPartner) const
|
---|
[b70721] | 353 | {
|
---|
| 354 | bool status = false;
|
---|
| 355 |
|
---|
[073a9e4] | 356 | const BondList& ListOfBonds = getListOfBondsAtStep(_step);
|
---|
| 357 | for (BondList::const_iterator runner = ListOfBonds.begin();
|
---|
| 358 | runner != ListOfBonds.end();
|
---|
| 359 | runner++) {
|
---|
[b70721] | 360 | status = status || ((*runner)->Contains(BondPartner));
|
---|
| 361 | }
|
---|
| 362 | return status;
|
---|
| 363 | };
|
---|
| 364 |
|
---|
[d74077] | 365 | std::ostream & BondedParticle::operator << (std::ostream &ost) const
|
---|
| 366 | {
|
---|
| 367 | ParticleInfo::operator<<(ost);
|
---|
| 368 | ost << "," << getPosition();
|
---|
| 369 | return ost;
|
---|
| 370 | }
|
---|
| 371 |
|
---|
| 372 | std::ostream & operator << (std::ostream &ost, const BondedParticle &a)
|
---|
| 373 | {
|
---|
| 374 | a.ParticleInfo::operator<<(ost);
|
---|
| 375 | ost << "," << a.getPosition();
|
---|
| 376 | return ost;
|
---|
| 377 | }
|
---|
| 378 |
|
---|