| [bcf653] | 1 | /* | 
|---|
|  | 2 | * Project: MoleCuilder | 
|---|
|  | 3 | * Description: creates and alters molecular systems | 
|---|
| [0aa122] | 4 | * Copyright (C)  2010-2012 University of Bonn. All rights reserved. | 
|---|
| [5aaa43] | 5 | * Copyright (C)  2013 Frederik Heber. All rights reserved. | 
|---|
| [94d5ac6] | 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/>. | 
|---|
| [bcf653] | 22 | */ | 
|---|
|  | 23 |  | 
|---|
| [14de469] | 24 | /** \file molecules.cpp | 
|---|
| [69eb71] | 25 | * | 
|---|
| [14de469] | 26 | * Functions for the class molecule. | 
|---|
| [69eb71] | 27 | * | 
|---|
| [14de469] | 28 | */ | 
|---|
|  | 29 |  | 
|---|
| [bf3817] | 30 | // include config.h | 
|---|
| [aafd77] | 31 | #ifdef HAVE_CONFIG_H | 
|---|
|  | 32 | #include <config.h> | 
|---|
|  | 33 | #endif | 
|---|
|  | 34 |  | 
|---|
| [ad011c] | 35 | #include "CodePatterns/MemDebug.hpp" | 
|---|
| [112b09] | 36 |  | 
|---|
| [0a5beb] | 37 | #include <algorithm> | 
|---|
| [ac9b56] | 38 | #include <boost/bind.hpp> | 
|---|
| [9df5c6] | 39 | #include <boost/foreach.hpp> | 
|---|
| [0a5beb] | 40 | #include <cstring> | 
|---|
| [49e1ae] | 41 |  | 
|---|
| [aafd77] | 42 | #include <gsl/gsl_inline.h> | 
|---|
|  | 43 | #include <gsl/gsl_heapsort.h> | 
|---|
|  | 44 |  | 
|---|
| [560bbe] | 45 | #include "molecule.hpp" | 
|---|
|  | 46 |  | 
|---|
| [6f0841] | 47 | #include "Atom/atom.hpp" | 
|---|
| [129204] | 48 | #include "Bond/bond.hpp" | 
|---|
| [9d83b6] | 49 | #include "Box.hpp" | 
|---|
|  | 50 | #include "CodePatterns/enumeration.hpp" | 
|---|
|  | 51 | #include "CodePatterns/Log.hpp" | 
|---|
| [c32d21] | 52 | #include "CodePatterns/Observer/Notification.hpp" | 
|---|
| [a80fbdf] | 53 | #include "config.hpp" | 
|---|
| [560bbe] | 54 | #include "Descriptors/AtomIdDescriptor.hpp" | 
|---|
| [3bdb6d] | 55 | #include "Element/element.hpp" | 
|---|
| [129204] | 56 | #include "Graph/BondGraph.hpp" | 
|---|
| [783e88] | 57 | #include "LinearAlgebra/Exceptions.hpp" | 
|---|
| [13d150] | 58 | #include "LinearAlgebra/leastsquaremin.hpp" | 
|---|
| [9d83b6] | 59 | #include "LinearAlgebra/Plane.hpp" | 
|---|
|  | 60 | #include "LinearAlgebra/RealSpaceMatrix.hpp" | 
|---|
|  | 61 | #include "LinearAlgebra/Vector.hpp" | 
|---|
| [53c7fc] | 62 | #include "LinkedCell/linkedcell.hpp" | 
|---|
| [560bbe] | 63 | #include "IdPool_impl.hpp" | 
|---|
| [c67ff9] | 64 | #include "Shapes/BaseShapes.hpp" | 
|---|
| [d127c8] | 65 | #include "Tesselation/tesselation.hpp" | 
|---|
| [b34306] | 66 | #include "World.hpp" | 
|---|
| [9d83b6] | 67 | #include "WorldTime.hpp" | 
|---|
| [14de469] | 68 |  | 
|---|
|  | 69 |  | 
|---|
|  | 70 | /************************************* Functions for class molecule *********************************/ | 
|---|
|  | 71 |  | 
|---|
|  | 72 | /** Constructor of class molecule. | 
|---|
|  | 73 | * Initialises molecule list with correctly referenced start and end, and sets molecule::last_atom to zero. | 
|---|
|  | 74 | */ | 
|---|
| [4d2b33] | 75 | molecule::molecule() : | 
|---|
| [cd5047] | 76 | Observable("molecule"), | 
|---|
| [458c31] | 77 | MDSteps(0), | 
|---|
|  | 78 | NoNonBonds(0), | 
|---|
|  | 79 | NoCyclicBonds(0), | 
|---|
|  | 80 | ActiveFlag(false), | 
|---|
|  | 81 | IndexNr(-1), | 
|---|
| [e791dc] | 82 | NoNonHydrogen(this,boost::bind(&molecule::doCountNoNonHydrogen,this),"NoNonHydrogen"), | 
|---|
| [458c31] | 83 | BondCount(this,boost::bind(&molecule::doCountBonds,this),"BondCount"), | 
|---|
| [52ed5b] | 84 | atomIdPool(1, 20, 100), | 
|---|
| [458c31] | 85 | last_atom(0) | 
|---|
| [69eb71] | 86 | { | 
|---|
| [6a3c83] | 87 | // add specific channels | 
|---|
|  | 88 | Channels *OurChannel = new Channels; | 
|---|
| [708277] | 89 | NotificationChannels.insert( std::make_pair( static_cast<Observable *>(this), OurChannel) ); | 
|---|
| [6a3c83] | 90 | for (size_t type = 0; type < (size_t)NotificationType_MAX; ++type) | 
|---|
|  | 91 | OurChannel->addChannel(type); | 
|---|
| [fa649a] | 92 |  | 
|---|
| [387b36] | 93 | strcpy(name,World::getInstance().getDefaultName().c_str()); | 
|---|
| [14de469] | 94 | }; | 
|---|
|  | 95 |  | 
|---|
| [cbc5fb] | 96 | molecule *NewMolecule(){ | 
|---|
| [4d2b33] | 97 | return new molecule(); | 
|---|
| [cbc5fb] | 98 | } | 
|---|
|  | 99 |  | 
|---|
| [14de469] | 100 | /** Destructor of class molecule. | 
|---|
|  | 101 | * Initialises molecule list with correctly referenced start and end, and sets molecule::last_atom to zero. | 
|---|
|  | 102 | */ | 
|---|
| [69eb71] | 103 | molecule::~molecule() | 
|---|
| [14de469] | 104 | { | 
|---|
| [24edfe] | 105 | // inform all UI elements about imminent removal before anything is lost | 
|---|
|  | 106 | { | 
|---|
|  | 107 | OBSERVE; | 
|---|
|  | 108 | NOTIFY(AboutToBeRemoved); | 
|---|
|  | 109 | } | 
|---|
| [042f82] | 110 | CleanupMolecule(); | 
|---|
| [14de469] | 111 | }; | 
|---|
|  | 112 |  | 
|---|
| [357fba] | 113 |  | 
|---|
| [cbc5fb] | 114 | void DeleteMolecule(molecule *mol){ | 
|---|
|  | 115 | delete mol; | 
|---|
|  | 116 | } | 
|---|
|  | 117 |  | 
|---|
| [520c8b] | 118 | // getter and setter | 
|---|
| [73a857] | 119 | const std::string molecule::getName() const{ | 
|---|
| [520c8b] | 120 | return std::string(name); | 
|---|
|  | 121 | } | 
|---|
|  | 122 |  | 
|---|
| [ea7176] | 123 | int molecule::getAtomCount() const{ | 
|---|
| [e791dc] | 124 | return atomIds.size(); | 
|---|
|  | 125 | } | 
|---|
|  | 126 |  | 
|---|
|  | 127 | size_t molecule::getNoNonHydrogen() const{ | 
|---|
|  | 128 | return *NoNonHydrogen; | 
|---|
| [ea7176] | 129 | } | 
|---|
|  | 130 |  | 
|---|
| [458c31] | 131 | int molecule::getBondCount() const{ | 
|---|
|  | 132 | return *BondCount; | 
|---|
|  | 133 | } | 
|---|
|  | 134 |  | 
|---|
| [520c8b] | 135 | void molecule::setName(const std::string _name){ | 
|---|
| [2ba827] | 136 | OBSERVE; | 
|---|
| [6a3c83] | 137 | NOTIFY(MoleculeNameChanged); | 
|---|
| [35b698] | 138 | cout << "Set name of molecule " << getId() << " to " << _name << endl; | 
|---|
| [520c8b] | 139 | strncpy(name,_name.c_str(),MAXSTRINGSIZE); | 
|---|
|  | 140 | } | 
|---|
|  | 141 |  | 
|---|
| [c6ab91] | 142 | void molecule::InsertLocalToGlobalId(atom * const pointer) | 
|---|
|  | 143 | { | 
|---|
|  | 144 | #ifndef NDEBUG | 
|---|
|  | 145 | std::pair< LocalToGlobalId_t::iterator, bool > inserter = | 
|---|
|  | 146 | #endif | 
|---|
|  | 147 | LocalToGlobalId.insert( std::make_pair(pointer->getNr(), pointer) ); | 
|---|
|  | 148 | ASSERT( inserter.second, | 
|---|
|  | 149 | "molecule::AddAtom() - local number "+toString(pointer->getNr())+" appears twice."); | 
|---|
|  | 150 | } | 
|---|
|  | 151 |  | 
|---|
| [560bbe] | 152 | bool molecule::changeAtomNr(int oldNr, int newNr, atom* target){ | 
|---|
|  | 153 | OBSERVE; | 
|---|
|  | 154 | if(atomIdPool.reserveId(newNr)){ | 
|---|
| [8c001a] | 155 | _lastchangedatom = target; | 
|---|
| [6a3c83] | 156 | NOTIFY(AtomNrChanged); | 
|---|
| [560bbe] | 157 | if (oldNr != -1)  // -1 is reserved and indicates no number | 
|---|
|  | 158 | atomIdPool.releaseId(oldNr); | 
|---|
| [c6ab91] | 159 | LocalToGlobalId.erase(oldNr); | 
|---|
| [560bbe] | 160 | ASSERT (target, | 
|---|
|  | 161 | "molecule::changeAtomNr() - given target is NULL, cannot set Nr or name."); | 
|---|
|  | 162 | target->setNr(newNr); | 
|---|
| [c6ab91] | 163 | InsertLocalToGlobalId(target); | 
|---|
| [560bbe] | 164 | setAtomName(target); | 
|---|
|  | 165 | return true; | 
|---|
|  | 166 | } else{ | 
|---|
|  | 167 | return false; | 
|---|
|  | 168 | } | 
|---|
|  | 169 | } | 
|---|
|  | 170 |  | 
|---|
| [a7a087] | 171 | bool molecule::changeId(moleculeId_t newId){ | 
|---|
|  | 172 | // first we move ourselves in the world | 
|---|
|  | 173 | // the world lets us know if that succeeded | 
|---|
|  | 174 | if(World::getInstance().changeMoleculeId(id,newId,this)){ | 
|---|
|  | 175 | id = newId; | 
|---|
|  | 176 | return true; | 
|---|
|  | 177 | } | 
|---|
|  | 178 | else{ | 
|---|
|  | 179 | return false; | 
|---|
|  | 180 | } | 
|---|
|  | 181 | } | 
|---|
|  | 182 |  | 
|---|
|  | 183 |  | 
|---|
| [73a857] | 184 | moleculeId_t molecule::getId() const { | 
|---|
| [cbc5fb] | 185 | return id; | 
|---|
|  | 186 | } | 
|---|
|  | 187 |  | 
|---|
|  | 188 | void molecule::setId(moleculeId_t _id){ | 
|---|
|  | 189 | id =_id; | 
|---|
|  | 190 | } | 
|---|
|  | 191 |  | 
|---|
| [73a857] | 192 | const Formula &molecule::getFormula() const { | 
|---|
| [f17e1c] | 193 | return formula; | 
|---|
| [ac9b56] | 194 | } | 
|---|
|  | 195 |  | 
|---|
| [73a857] | 196 | unsigned int molecule::getElementCount() const{ | 
|---|
| [389cc8] | 197 | return formula.getElementCount(); | 
|---|
|  | 198 | } | 
|---|
|  | 199 |  | 
|---|
|  | 200 | bool molecule::hasElement(const element *element) const{ | 
|---|
|  | 201 | return formula.hasElement(element); | 
|---|
|  | 202 | } | 
|---|
|  | 203 |  | 
|---|
|  | 204 | bool molecule::hasElement(atomicNumber_t Z) const{ | 
|---|
|  | 205 | return formula.hasElement(Z); | 
|---|
|  | 206 | } | 
|---|
|  | 207 |  | 
|---|
|  | 208 | bool molecule::hasElement(const string &shorthand) const{ | 
|---|
|  | 209 | return formula.hasElement(shorthand); | 
|---|
|  | 210 | } | 
|---|
|  | 211 |  | 
|---|
| [bd58fb] | 212 | /************************** Access to the List of Atoms ****************/ | 
|---|
|  | 213 |  | 
|---|
| [9879f6] | 214 | molecule::const_iterator molecule::erase( const_iterator loc ) | 
|---|
|  | 215 | { | 
|---|
| [bf8e20] | 216 | OBSERVE; | 
|---|
| [59fff1] | 217 | const_iterator iter = loc; | 
|---|
| [30c753] | 218 | ++iter; | 
|---|
| [59fff1] | 219 | atom * const _atom = const_cast<atom *>(*loc); | 
|---|
| [8c001a] | 220 | { | 
|---|
|  | 221 | _lastchangedatom = _atom; | 
|---|
|  | 222 | NOTIFY(AtomRemoved); | 
|---|
|  | 223 | } | 
|---|
| [59fff1] | 224 | atomIds.erase( _atom->getId() ); | 
|---|
| [6a3c83] | 225 | { | 
|---|
|  | 226 | NOTIFY(AtomNrChanged); | 
|---|
|  | 227 | atomIdPool.releaseId(_atom->getNr()); | 
|---|
| [c6ab91] | 228 | LocalToGlobalId.erase(_atom->getNr()); | 
|---|
| [6a3c83] | 229 | _atom->setNr(-1); | 
|---|
|  | 230 | } | 
|---|
| [59fff1] | 231 | formula-=_atom->getType(); | 
|---|
|  | 232 | _atom->removeFromMolecule(); | 
|---|
| [9879f6] | 233 | return iter; | 
|---|
|  | 234 | } | 
|---|
|  | 235 |  | 
|---|
| [6cfa36] | 236 | molecule::const_iterator molecule::erase( atom * key ) | 
|---|
| [9879f6] | 237 | { | 
|---|
| [bf8e20] | 238 | OBSERVE; | 
|---|
| [8c001a] | 239 | { | 
|---|
|  | 240 | _lastchangedatom = key; | 
|---|
|  | 241 | NOTIFY(AtomRemoved); | 
|---|
|  | 242 | } | 
|---|
| [59fff1] | 243 | const_iterator iter = find(key); | 
|---|
| [a7b761b] | 244 | if (iter != end()){ | 
|---|
| [30c753] | 245 | ++iter; | 
|---|
| [274d45] | 246 | atomIds.erase( key->getId() ); | 
|---|
| [6a3c83] | 247 | { | 
|---|
|  | 248 | NOTIFY(AtomNrChanged); | 
|---|
|  | 249 | atomIdPool.releaseId(key->getNr()); | 
|---|
| [c6ab91] | 250 | LocalToGlobalId.erase(key->getNr()); | 
|---|
| [6a3c83] | 251 | key->setNr(-1); | 
|---|
|  | 252 | } | 
|---|
| [8f4df1] | 253 | formula-=key->getType(); | 
|---|
| [6cfa36] | 254 | key->removeFromMolecule(); | 
|---|
| [a7b761b] | 255 | } | 
|---|
|  | 256 | return iter; | 
|---|
| [9879f6] | 257 | } | 
|---|
|  | 258 |  | 
|---|
|  | 259 | pair<molecule::iterator,bool> molecule::insert ( atom * const key ) | 
|---|
|  | 260 | { | 
|---|
| [bf8e20] | 261 | OBSERVE; | 
|---|
| [6a3c83] | 262 | NOTIFY(AtomInserted); | 
|---|
| [8c001a] | 263 | _lastchangedatom = key; | 
|---|
| [8e1f901] | 264 | std::pair<iterator,bool> res = atomIds.insert(key->getId()); | 
|---|
| [274d45] | 265 | if (res.second) { // push atom if went well | 
|---|
| [6a3c83] | 266 | NOTIFY(AtomNrChanged); | 
|---|
| [560bbe] | 267 | key->setNr(atomIdPool.getNextId()); | 
|---|
| [c6ab91] | 268 | InsertLocalToGlobalId(key); | 
|---|
| [560bbe] | 269 | setAtomName(key); | 
|---|
| [8f4df1] | 270 | formula+=key->getType(); | 
|---|
| [8e1f901] | 271 | return res; | 
|---|
| [274d45] | 272 | } else { | 
|---|
| [30c753] | 273 | return pair<iterator,bool>(end(),res.second); | 
|---|
| [274d45] | 274 | } | 
|---|
| [9879f6] | 275 | } | 
|---|
| [520c8b] | 276 |  | 
|---|
| [560bbe] | 277 | void molecule::setAtomName(atom *_atom) const | 
|---|
|  | 278 | { | 
|---|
|  | 279 | std::stringstream sstr; | 
|---|
| [52ed5b] | 280 | sstr << _atom->getType()->getSymbol() << _atom->getNr(); | 
|---|
| [560bbe] | 281 | _atom->setName(sstr.str()); | 
|---|
|  | 282 | } | 
|---|
|  | 283 |  | 
|---|
| [9317be] | 284 | World::AtomComposite molecule::getAtomSet() const | 
|---|
| [3738f0] | 285 | { | 
|---|
| [9317be] | 286 | World::AtomComposite vector_of_atoms; | 
|---|
| [59fff1] | 287 | for (molecule::iterator iter = begin(); iter != end(); ++iter) | 
|---|
| [30c753] | 288 | vector_of_atoms.push_back(*iter); | 
|---|
| [3738f0] | 289 | return vector_of_atoms; | 
|---|
|  | 290 | } | 
|---|
|  | 291 |  | 
|---|
| [14de469] | 292 | /** Adds given atom \a *pointer from molecule list. | 
|---|
| [69eb71] | 293 | * Increases molecule::last_atom and gives last number to added atom and names it according to its element::abbrev and molecule::AtomCount | 
|---|
| [14de469] | 294 | * \param *pointer allocated and set atom | 
|---|
|  | 295 | * \return true - succeeded, false - atom not found in list | 
|---|
|  | 296 | */ | 
|---|
|  | 297 | bool molecule::AddAtom(atom *pointer) | 
|---|
| [69eb71] | 298 | { | 
|---|
| [042f82] | 299 | if (pointer != NULL) { | 
|---|
| [356ae4] | 300 | // molecule::insert() is called by setMolecule() | 
|---|
| [6cfa36] | 301 | pointer->setMolecule(this); | 
|---|
| [f721c6] | 302 | } | 
|---|
| [9879f6] | 303 | return true; | 
|---|
| [14de469] | 304 | }; | 
|---|
|  | 305 |  | 
|---|
|  | 306 | /** Adds a copy of the given atom \a *pointer from molecule list. | 
|---|
|  | 307 | * Increases molecule::last_atom and gives last number to added atom. | 
|---|
|  | 308 | * \param *pointer allocated and set atom | 
|---|
| [89c8b2] | 309 | * \return pointer to the newly added atom | 
|---|
| [14de469] | 310 | */ | 
|---|
|  | 311 | atom * molecule::AddCopyAtom(atom *pointer) | 
|---|
| [69eb71] | 312 | { | 
|---|
| [f721c6] | 313 | atom *retval = NULL; | 
|---|
| [042f82] | 314 | if (pointer != NULL) { | 
|---|
| [46d958] | 315 | atom *walker = pointer->clone(); | 
|---|
| [c6ab91] | 316 | AddAtom(walker); | 
|---|
| [f721c6] | 317 | retval=walker; | 
|---|
|  | 318 | } | 
|---|
|  | 319 | return retval; | 
|---|
| [14de469] | 320 | }; | 
|---|
|  | 321 |  | 
|---|
|  | 322 | /** Adds a Hydrogen atom in replacement for the given atom \a *partner in bond with a *origin. | 
|---|
|  | 323 | * Here, we have to distinguish between single, double or triple bonds as stated by \a BondDegree, that each demand | 
|---|
|  | 324 | * a different scheme when adding \a *replacement atom for the given one. | 
|---|
|  | 325 | * -# Single Bond: Simply add new atom with bond distance rescaled to typical hydrogen one | 
|---|
|  | 326 | * -# Double Bond: Here, we need the **BondList of the \a *origin atom, by scanning for the other bonds instead of | 
|---|
| [042f82] | 327 | *    *Bond, we use the through these connected atoms to determine the plane they lie in, vector::MakeNormalvector(). | 
|---|
|  | 328 | *    The orthonormal vector to this plane along with the vector in *Bond direction determines the plane the two | 
|---|
|  | 329 | *    replacing hydrogens shall lie in. Now, all remains to do is take the usual hydrogen double bond angle for the | 
|---|
|  | 330 | *    element of *origin and form the sin/cos admixture of both plane vectors for the new coordinates of the two | 
|---|
|  | 331 | *    hydrogens forming this angle with *origin. | 
|---|
| [14de469] | 332 | * -# Triple Bond: The idea is to set up a tetraoid (C1-H1-H2-H3) (however the lengths \f$b\f$ of the sides of the base | 
|---|
| [042f82] | 333 | *    triangle formed by the to be added hydrogens are not equal to the typical bond distance \f$l\f$ but have to be | 
|---|
|  | 334 | *    determined from the typical angle \f$\alpha\f$ for a hydrogen triple connected to the element of *origin): | 
|---|
|  | 335 | *    We have the height \f$d\f$ as the vector in *Bond direction (from triangle C1-H1-H2). | 
|---|
|  | 336 | *    \f[ h = l \cdot \cos{\left (\frac{\alpha}{2} \right )} \qquad b = 2l \cdot \sin{\left (\frac{\alpha}{2} \right)} \quad \rightarrow \quad d = l \cdot \sqrt{\cos^2{\left (\frac{\alpha}{2} \right)}-\frac{1}{3}\cdot\sin^2{\left (\frac{\alpha}{2}\right )}} | 
|---|
|  | 337 | *    \f] | 
|---|
|  | 338 | *    vector::GetNormalvector() creates one orthonormal vector from this *Bond vector and vector::MakeNormalvector creates | 
|---|
|  | 339 | *    the third one from the former two vectors. The latter ones form the plane of the base triangle mentioned above. | 
|---|
|  | 340 | *    The lengths for these are \f$f\f$ and \f$g\f$ (from triangle H1-H2-(center of H1-H2-H3)) with knowledge that | 
|---|
|  | 341 | *    the median lines in an isosceles triangle meet in the center point with a ratio 2:1. | 
|---|
|  | 342 | *    \f[ f = \frac{b}{\sqrt{3}} \qquad g = \frac{b}{2} | 
|---|
|  | 343 | *    \f] | 
|---|
|  | 344 | *    as the coordination of all three atoms in the coordinate system of these three vectors: | 
|---|
|  | 345 | *    \f$\pmatrix{d & f & 0}\f$, \f$\pmatrix{d & -0.5 \cdot f & g}\f$ and \f$\pmatrix{d & -0.5 \cdot f & -g}\f$. | 
|---|
| [69eb71] | 346 | * | 
|---|
| [14de469] | 347 | * \param *out output stream for debugging | 
|---|
| [69eb71] | 348 | * \param *Bond pointer to bond between \a *origin and \a *replacement | 
|---|
|  | 349 | * \param *TopOrigin son of \a *origin of upper level molecule (the atom added to this molecule as a copy of \a *origin) | 
|---|
| [14de469] | 350 | * \param *origin pointer to atom which acts as the origin for scaling the added hydrogen to correct bond length | 
|---|
|  | 351 | * \param *replacement pointer to the atom which shall be copied as a hydrogen atom in this molecule | 
|---|
|  | 352 | * \param isAngstroem whether the coordination of the given atoms is in AtomicLength (false) or Angstrom(true) | 
|---|
|  | 353 | * \return number of atoms added, if < bond::BondDegree then something went wrong | 
|---|
|  | 354 | * \todo double and triple bonds splitting (always use the tetraeder angle!) | 
|---|
|  | 355 | */ | 
|---|
| [06804b] | 356 | //bool molecule::AddHydrogenReplacementAtom(bond::ptr TopBond, atom *BottomOrigin, atom *TopOrigin, atom *TopReplacement, bool IsAngstroem) | 
|---|
|  | 357 | //{ | 
|---|
|  | 358 | ////  Info info(__func__); | 
|---|
|  | 359 | //  bool AllWentWell = true;    // flag gathering the boolean return value of molecule::AddAtom and other functions, as return value on exit | 
|---|
|  | 360 | //  double bondlength;  // bond length of the bond to be replaced/cut | 
|---|
|  | 361 | //  double bondangle;  // bond angle of the bond to be replaced/cut | 
|---|
|  | 362 | //  double BondRescale;   // rescale value for the hydrogen bond length | 
|---|
|  | 363 | //  bond::ptr FirstBond; | 
|---|
|  | 364 | //  bond::ptr SecondBond; // Other bonds in double bond case to determine "other" plane | 
|---|
|  | 365 | //  atom *FirstOtherAtom = NULL, *SecondOtherAtom = NULL, *ThirdOtherAtom = NULL; // pointer to hydrogen atoms to be added | 
|---|
|  | 366 | //  double b,l,d,f,g, alpha, factors[NDIM];    // hold temporary values in triple bond case for coordination determination | 
|---|
|  | 367 | //  Vector Orthovector1, Orthovector2;  // temporary vectors in coordination construction | 
|---|
|  | 368 | //  Vector InBondvector;    // vector in direction of *Bond | 
|---|
|  | 369 | //  const RealSpaceMatrix &matrix =  World::getInstance().getDomain().getM(); | 
|---|
|  | 370 | //  bond::ptr Binder; | 
|---|
|  | 371 | // | 
|---|
|  | 372 | //  // create vector in direction of bond | 
|---|
|  | 373 | //  InBondvector = TopReplacement->getPosition() - TopOrigin->getPosition(); | 
|---|
|  | 374 | //  bondlength = InBondvector.Norm(); | 
|---|
|  | 375 | // | 
|---|
|  | 376 | //   // is greater than typical bond distance? Then we have to correct periodically | 
|---|
|  | 377 | //   // the problem is not the H being out of the box, but InBondvector have the wrong direction | 
|---|
|  | 378 | //   // due to TopReplacement or Origin being on the wrong side! | 
|---|
|  | 379 | //  const BondGraph * const BG = World::getInstance().getBondGraph(); | 
|---|
|  | 380 | //  const range<double> MinMaxBondDistance( | 
|---|
|  | 381 | //      BG->getMinMaxDistance(TopOrigin,TopReplacement)); | 
|---|
|  | 382 | //  if (!MinMaxBondDistance.isInRange(bondlength)) { | 
|---|
|  | 383 | ////    LOG(4, "InBondvector is: " << InBondvector << "."); | 
|---|
|  | 384 | //    Orthovector1.Zero(); | 
|---|
|  | 385 | //    for (int i=NDIM;i--;) { | 
|---|
|  | 386 | //      l = TopReplacement->at(i) - TopOrigin->at(i); | 
|---|
|  | 387 | //      if (fabs(l) > MinMaxBondDistance.last) { // is component greater than bond distance (check against min not useful here) | 
|---|
|  | 388 | //        Orthovector1[i] = (l < 0) ? -1. : +1.; | 
|---|
|  | 389 | //      } // (signs are correct, was tested!) | 
|---|
|  | 390 | //    } | 
|---|
|  | 391 | //    Orthovector1 *= matrix; | 
|---|
|  | 392 | //    InBondvector -= Orthovector1; // subtract just the additional translation | 
|---|
|  | 393 | //    bondlength = InBondvector.Norm(); | 
|---|
|  | 394 | ////    LOG(4, "INFO: Corrected InBondvector is now: " << InBondvector << "."); | 
|---|
|  | 395 | //  } // periodic correction finished | 
|---|
|  | 396 | // | 
|---|
|  | 397 | //  InBondvector.Normalize(); | 
|---|
|  | 398 | //  // get typical bond length and store as scale factor for later | 
|---|
|  | 399 | //  ASSERT(TopOrigin->getType() != NULL, "AddHydrogenReplacementAtom: element of TopOrigin is not given."); | 
|---|
|  | 400 | //  BondRescale = TopOrigin->getType()->getHBondDistance(TopBond->getDegree()-1); | 
|---|
|  | 401 | //  if (BondRescale == -1) { | 
|---|
|  | 402 | //    ELOG(1, "There is no typical hydrogen bond distance in replacing bond (" << TopOrigin->getName() << "<->" << TopReplacement->getName() << ") of degree " << TopBond->getDegree() << "!"); | 
|---|
|  | 403 | //    return false; | 
|---|
|  | 404 | //    BondRescale = bondlength; | 
|---|
|  | 405 | //  } else { | 
|---|
|  | 406 | //    if (!IsAngstroem) | 
|---|
|  | 407 | //      BondRescale /= (1.*AtomicLengthToAngstroem); | 
|---|
|  | 408 | //  } | 
|---|
|  | 409 | // | 
|---|
|  | 410 | //  // discern single, double and triple bonds | 
|---|
|  | 411 | //  switch(TopBond->getDegree()) { | 
|---|
|  | 412 | //    case 1: | 
|---|
|  | 413 | //      FirstOtherAtom = World::getInstance().createAtom();    // new atom | 
|---|
|  | 414 | //      FirstOtherAtom->setType(1);  // element is Hydrogen | 
|---|
|  | 415 | //      FirstOtherAtom->setAtomicVelocity(TopReplacement->getAtomicVelocity()); // copy velocity | 
|---|
|  | 416 | //      FirstOtherAtom->setFixedIon(TopReplacement->getFixedIon()); | 
|---|
|  | 417 | //      if (TopReplacement->getType()->getAtomicNumber() == 1) { // neither rescale nor replace if it's already hydrogen | 
|---|
|  | 418 | //        FirstOtherAtom->father = TopReplacement; | 
|---|
|  | 419 | //        BondRescale = bondlength; | 
|---|
|  | 420 | //      } else { | 
|---|
|  | 421 | //        FirstOtherAtom->father = NULL;  // if we replace hydrogen, we mark it as our father, otherwise we are just an added hydrogen with no father | 
|---|
|  | 422 | //      } | 
|---|
|  | 423 | //      InBondvector *= BondRescale;   // rescale the distance vector to Hydrogen bond length | 
|---|
|  | 424 | //      FirstOtherAtom->setPosition(TopOrigin->getPosition() + InBondvector); // set coordination to origin and add distance vector to replacement atom | 
|---|
|  | 425 | //      AllWentWell = AllWentWell && AddAtom(FirstOtherAtom); | 
|---|
|  | 426 | ////      LOG(4, "INFO: Added " << *FirstOtherAtom << " at: " << FirstOtherAtom->x << "."); | 
|---|
|  | 427 | //      Binder = AddBond(BottomOrigin, FirstOtherAtom, 1); | 
|---|
|  | 428 | //      Binder->Cyclic = false; | 
|---|
|  | 429 | //      Binder->Type = GraphEdge::TreeEdge; | 
|---|
|  | 430 | //      break; | 
|---|
|  | 431 | //    case 2: | 
|---|
|  | 432 | //      { | 
|---|
|  | 433 | //        // determine two other bonds (warning if there are more than two other) plus valence sanity check | 
|---|
|  | 434 | //        const BondList& ListOfBonds = TopOrigin->getListOfBonds(); | 
|---|
|  | 435 | //        for (BondList::const_iterator Runner = ListOfBonds.begin(); | 
|---|
|  | 436 | //            Runner != ListOfBonds.end(); | 
|---|
|  | 437 | //            ++Runner) { | 
|---|
|  | 438 | //          if ((*Runner) != TopBond) { | 
|---|
|  | 439 | //            if (FirstBond == NULL) { | 
|---|
|  | 440 | //              FirstBond = (*Runner); | 
|---|
|  | 441 | //              FirstOtherAtom = (*Runner)->GetOtherAtom(TopOrigin); | 
|---|
|  | 442 | //            } else if (SecondBond == NULL) { | 
|---|
|  | 443 | //              SecondBond = (*Runner); | 
|---|
|  | 444 | //              SecondOtherAtom = (*Runner)->GetOtherAtom(TopOrigin); | 
|---|
|  | 445 | //            } else { | 
|---|
|  | 446 | //              ELOG(2, "Detected more than four bonds for atom " << TopOrigin->getName()); | 
|---|
|  | 447 | //            } | 
|---|
|  | 448 | //          } | 
|---|
|  | 449 | //        } | 
|---|
|  | 450 | //      } | 
|---|
|  | 451 | //      if (SecondOtherAtom == NULL) {  // then we have an atom with valence four, but only 3 bonds: one to replace and one which is TopBond (third is FirstBond) | 
|---|
|  | 452 | //        SecondBond = TopBond; | 
|---|
|  | 453 | //        SecondOtherAtom = TopReplacement; | 
|---|
|  | 454 | //      } | 
|---|
|  | 455 | //      if (FirstOtherAtom != NULL) { // then we just have this double bond and the plane does not matter at all | 
|---|
|  | 456 | ////        LOG(3, "Regarding the double bond (" << TopOrigin->Name << "<->" << TopReplacement->Name << ") to be constructed: Taking " << FirstOtherAtom->Name << " and " << SecondOtherAtom->Name << " along with " << TopOrigin->Name << " to determine orthogonal plane."); | 
|---|
|  | 457 | // | 
|---|
|  | 458 | //        // determine the plane of these two with the *origin | 
|---|
|  | 459 | //        try { | 
|---|
|  | 460 | //          Orthovector1 = Plane(TopOrigin->getPosition(), FirstOtherAtom->getPosition(), SecondOtherAtom->getPosition()).getNormal(); | 
|---|
|  | 461 | //        } | 
|---|
|  | 462 | //        catch(LinearDependenceException &excp){ | 
|---|
|  | 463 | //          LOG(0, boost::diagnostic_information(excp)); | 
|---|
|  | 464 | //          // TODO: figure out what to do with the Orthovector in this case | 
|---|
|  | 465 | //          AllWentWell = false; | 
|---|
|  | 466 | //        } | 
|---|
|  | 467 | //      } else { | 
|---|
|  | 468 | //        Orthovector1.GetOneNormalVector(InBondvector); | 
|---|
|  | 469 | //      } | 
|---|
|  | 470 | //      //LOG(3, "INFO: Orthovector1: " << Orthovector1 << "."); | 
|---|
|  | 471 | //      // orthogonal vector and bond vector between origin and replacement form the new plane | 
|---|
|  | 472 | //      Orthovector1.MakeNormalTo(InBondvector); | 
|---|
|  | 473 | //      Orthovector1.Normalize(); | 
|---|
|  | 474 | //      //LOG(3, "ReScaleCheck: " << Orthovector1.Norm() << " and " << InBondvector.Norm() << "."); | 
|---|
|  | 475 | // | 
|---|
|  | 476 | //      // create the two Hydrogens ... | 
|---|
|  | 477 | //      FirstOtherAtom = World::getInstance().createAtom(); | 
|---|
|  | 478 | //      SecondOtherAtom = World::getInstance().createAtom(); | 
|---|
|  | 479 | //      FirstOtherAtom->setType(1); | 
|---|
|  | 480 | //      SecondOtherAtom->setType(1); | 
|---|
|  | 481 | //      FirstOtherAtom->setAtomicVelocity(TopReplacement->getAtomicVelocity()); // copy velocity | 
|---|
|  | 482 | //      FirstOtherAtom->setFixedIon(TopReplacement->getFixedIon()); | 
|---|
|  | 483 | //      SecondOtherAtom->setAtomicVelocity(TopReplacement->getAtomicVelocity()); // copy velocity | 
|---|
|  | 484 | //      SecondOtherAtom->setFixedIon(TopReplacement->getFixedIon()); | 
|---|
|  | 485 | //      FirstOtherAtom->father = NULL;  // we are just an added hydrogen with no father | 
|---|
|  | 486 | //      SecondOtherAtom->father = NULL;  //  we are just an added hydrogen with no father | 
|---|
|  | 487 | //      bondangle = TopOrigin->getType()->getHBondAngle(1); | 
|---|
|  | 488 | //      if (bondangle == -1) { | 
|---|
|  | 489 | //        ELOG(1, "There is no typical hydrogen bond angle in replacing bond (" << TopOrigin->getName() << "<->" << TopReplacement->getName() << ") of degree " << TopBond->getDegree() << "!"); | 
|---|
|  | 490 | //        return false; | 
|---|
|  | 491 | //        bondangle = 0; | 
|---|
|  | 492 | //      } | 
|---|
|  | 493 | //      bondangle *= M_PI/180./2.; | 
|---|
|  | 494 | ////      LOG(3, "INFO: ReScaleCheck: InBondvector " << InBondvector << ", " << Orthovector1 << "."); | 
|---|
|  | 495 | ////      LOG(3, "Half the bond angle is " << bondangle << ", sin and cos of it: " << sin(bondangle) << ", " << cos(bondangle)); | 
|---|
|  | 496 | //      FirstOtherAtom->Zero(); | 
|---|
|  | 497 | //      SecondOtherAtom->Zero(); | 
|---|
|  | 498 | //      for(int i=NDIM;i--;) { // rotate by half the bond angle in both directions (InBondvector is bondangle = 0 direction) | 
|---|
|  | 499 | //        FirstOtherAtom->set(i, InBondvector[i] * cos(bondangle) + Orthovector1[i] * (sin(bondangle))); | 
|---|
|  | 500 | //        SecondOtherAtom->set(i, InBondvector[i] * cos(bondangle) + Orthovector1[i] * (-sin(bondangle))); | 
|---|
|  | 501 | //      } | 
|---|
|  | 502 | //      FirstOtherAtom->Scale(BondRescale);  // rescale by correct BondDistance | 
|---|
|  | 503 | //      SecondOtherAtom->Scale(BondRescale); | 
|---|
|  | 504 | //      //LOG(3, "ReScaleCheck: " << FirstOtherAtom->x.Norm() << " and " << SecondOtherAtom->x.Norm() << "."); | 
|---|
|  | 505 | //      *FirstOtherAtom += TopOrigin->getPosition(); | 
|---|
|  | 506 | //      *SecondOtherAtom += TopOrigin->getPosition(); | 
|---|
|  | 507 | //      // ... and add to molecule | 
|---|
|  | 508 | //      AllWentWell = AllWentWell && AddAtom(FirstOtherAtom); | 
|---|
|  | 509 | //      AllWentWell = AllWentWell && AddAtom(SecondOtherAtom); | 
|---|
|  | 510 | ////      LOG(4, "INFO: Added " << *FirstOtherAtom << " at: " << FirstOtherAtom->x << "."); | 
|---|
|  | 511 | ////      LOG(4, "INFO: Added " << *SecondOtherAtom << " at: " << SecondOtherAtom->x << "."); | 
|---|
|  | 512 | //      Binder = AddBond(BottomOrigin, FirstOtherAtom, 1); | 
|---|
|  | 513 | //      Binder->Cyclic = false; | 
|---|
|  | 514 | //      Binder->Type = GraphEdge::TreeEdge; | 
|---|
|  | 515 | //      Binder = AddBond(BottomOrigin, SecondOtherAtom, 1); | 
|---|
|  | 516 | //      Binder->Cyclic = false; | 
|---|
|  | 517 | //      Binder->Type = GraphEdge::TreeEdge; | 
|---|
|  | 518 | //      break; | 
|---|
|  | 519 | //    case 3: | 
|---|
|  | 520 | //      // take the "usual" tetraoidal angle and add the three Hydrogen in direction of the bond (height of the tetraoid) | 
|---|
|  | 521 | //      FirstOtherAtom = World::getInstance().createAtom(); | 
|---|
|  | 522 | //      SecondOtherAtom = World::getInstance().createAtom(); | 
|---|
|  | 523 | //      ThirdOtherAtom = World::getInstance().createAtom(); | 
|---|
|  | 524 | //      FirstOtherAtom->setType(1); | 
|---|
|  | 525 | //      SecondOtherAtom->setType(1); | 
|---|
|  | 526 | //      ThirdOtherAtom->setType(1); | 
|---|
|  | 527 | //      FirstOtherAtom->setAtomicVelocity(TopReplacement->getAtomicVelocity()); // copy velocity | 
|---|
|  | 528 | //      FirstOtherAtom->setFixedIon(TopReplacement->getFixedIon()); | 
|---|
|  | 529 | //      SecondOtherAtom->setAtomicVelocity(TopReplacement->getAtomicVelocity()); // copy velocity | 
|---|
|  | 530 | //      SecondOtherAtom->setFixedIon(TopReplacement->getFixedIon()); | 
|---|
|  | 531 | //      ThirdOtherAtom->setAtomicVelocity(TopReplacement->getAtomicVelocity()); // copy velocity | 
|---|
|  | 532 | //      ThirdOtherAtom->setFixedIon(TopReplacement->getFixedIon()); | 
|---|
|  | 533 | //      FirstOtherAtom->father = NULL;  //  we are just an added hydrogen with no father | 
|---|
|  | 534 | //      SecondOtherAtom->father = NULL;  //  we are just an added hydrogen with no father | 
|---|
|  | 535 | //      ThirdOtherAtom->father = NULL;  //  we are just an added hydrogen with no father | 
|---|
|  | 536 | // | 
|---|
|  | 537 | //      // we need to vectors orthonormal the InBondvector | 
|---|
|  | 538 | //      AllWentWell = AllWentWell && Orthovector1.GetOneNormalVector(InBondvector); | 
|---|
|  | 539 | ////      LOG(3, "INFO: Orthovector1: " << Orthovector1 << "."); | 
|---|
|  | 540 | //      try{ | 
|---|
|  | 541 | //        Orthovector2 = Plane(InBondvector, Orthovector1,0).getNormal(); | 
|---|
|  | 542 | //      } | 
|---|
|  | 543 | //      catch(LinearDependenceException &excp) { | 
|---|
|  | 544 | //        LOG(0, boost::diagnostic_information(excp)); | 
|---|
|  | 545 | //        AllWentWell = false; | 
|---|
|  | 546 | //      } | 
|---|
|  | 547 | ////      LOG(3, "INFO: Orthovector2: " << Orthovector2 << ".") | 
|---|
|  | 548 | // | 
|---|
|  | 549 | //      // create correct coordination for the three atoms | 
|---|
|  | 550 | //      alpha = (TopOrigin->getType()->getHBondAngle(2))/180.*M_PI/2.;  // retrieve triple bond angle from database | 
|---|
|  | 551 | //      l = BondRescale;        // desired bond length | 
|---|
|  | 552 | //      b = 2.*l*sin(alpha);    // base length of isosceles triangle | 
|---|
|  | 553 | //      d = l*sqrt(cos(alpha)*cos(alpha) - sin(alpha)*sin(alpha)/3.);   // length for InBondvector | 
|---|
|  | 554 | //      f = b/sqrt(3.);   // length for Orthvector1 | 
|---|
|  | 555 | //      g = b/2.;         // length for Orthvector2 | 
|---|
|  | 556 | ////      LOG(3, "Bond length and half-angle: " << l << ", " << alpha << "\t (b,d,f,g) = " << b << ", " << d << ", " << f << ", " << g << ", "); | 
|---|
|  | 557 | ////      LOG(3, "The three Bond lengths: " << sqrt(d*d+f*f) << ", " << sqrt(d*d+(-0.5*f)*(-0.5*f)+g*g) << ", "  << sqrt(d*d+(-0.5*f)*(-0.5*f)+g*g)); | 
|---|
|  | 558 | //      factors[0] = d; | 
|---|
|  | 559 | //      factors[1] = f; | 
|---|
|  | 560 | //      factors[2] = 0.; | 
|---|
|  | 561 | //      FirstOtherAtom->LinearCombinationOfVectors(InBondvector, Orthovector1, Orthovector2, factors); | 
|---|
|  | 562 | //      factors[1] = -0.5*f; | 
|---|
|  | 563 | //      factors[2] = g; | 
|---|
|  | 564 | //      SecondOtherAtom->LinearCombinationOfVectors(InBondvector, Orthovector1, Orthovector2, factors); | 
|---|
|  | 565 | //      factors[2] = -g; | 
|---|
|  | 566 | //      ThirdOtherAtom->LinearCombinationOfVectors(InBondvector, Orthovector1, Orthovector2, factors); | 
|---|
|  | 567 | // | 
|---|
|  | 568 | //      // rescale each to correct BondDistance | 
|---|
|  | 569 | ////      FirstOtherAtom->x.Scale(&BondRescale); | 
|---|
|  | 570 | ////      SecondOtherAtom->x.Scale(&BondRescale); | 
|---|
|  | 571 | ////      ThirdOtherAtom->x.Scale(&BondRescale); | 
|---|
|  | 572 | // | 
|---|
|  | 573 | //      // and relative to *origin atom | 
|---|
|  | 574 | //      *FirstOtherAtom += TopOrigin->getPosition(); | 
|---|
|  | 575 | //      *SecondOtherAtom += TopOrigin->getPosition(); | 
|---|
|  | 576 | //      *ThirdOtherAtom += TopOrigin->getPosition(); | 
|---|
|  | 577 | // | 
|---|
|  | 578 | //      // ... and add to molecule | 
|---|
|  | 579 | //      AllWentWell = AllWentWell && AddAtom(FirstOtherAtom); | 
|---|
|  | 580 | //      AllWentWell = AllWentWell && AddAtom(SecondOtherAtom); | 
|---|
|  | 581 | //      AllWentWell = AllWentWell && AddAtom(ThirdOtherAtom); | 
|---|
|  | 582 | ////      LOG(4, "INFO: Added " << *FirstOtherAtom << " at: " << FirstOtherAtom->x << "."); | 
|---|
|  | 583 | ////      LOG(4, "INFO: Added " << *SecondOtherAtom << " at: " << SecondOtherAtom->x << "."); | 
|---|
|  | 584 | ////      LOG(4, "INFO: Added " << *ThirdOtherAtom << " at: " << ThirdOtherAtom->x << "."); | 
|---|
|  | 585 | //      Binder = AddBond(BottomOrigin, FirstOtherAtom, 1); | 
|---|
|  | 586 | //      Binder->Cyclic = false; | 
|---|
|  | 587 | //      Binder->Type = GraphEdge::TreeEdge; | 
|---|
|  | 588 | //      Binder = AddBond(BottomOrigin, SecondOtherAtom, 1); | 
|---|
|  | 589 | //      Binder->Cyclic = false; | 
|---|
|  | 590 | //      Binder->Type = GraphEdge::TreeEdge; | 
|---|
|  | 591 | //      Binder = AddBond(BottomOrigin, ThirdOtherAtom, 1); | 
|---|
|  | 592 | //      Binder->Cyclic = false; | 
|---|
|  | 593 | //      Binder->Type = GraphEdge::TreeEdge; | 
|---|
|  | 594 | //      break; | 
|---|
|  | 595 | //    default: | 
|---|
|  | 596 | //      ELOG(1, "BondDegree does not state single, double or triple bond!"); | 
|---|
|  | 597 | //      AllWentWell = false; | 
|---|
|  | 598 | //      break; | 
|---|
|  | 599 | //  } | 
|---|
|  | 600 | // | 
|---|
|  | 601 | //  return AllWentWell; | 
|---|
|  | 602 | //}; | 
|---|
| [14de469] | 603 |  | 
|---|
|  | 604 | /** Creates a copy of this molecule. | 
|---|
| [c67ff9] | 605 | * \param offset translation Vector for the new molecule relative to old one | 
|---|
| [14de469] | 606 | * \return copy of molecule | 
|---|
|  | 607 | */ | 
|---|
| [c67ff9] | 608 | molecule *molecule::CopyMolecule(const Vector &offset) const | 
|---|
| [14de469] | 609 | { | 
|---|
| [5f612ee] | 610 | molecule *copy = World::getInstance().createMolecule(); | 
|---|
| [042f82] | 611 |  | 
|---|
|  | 612 | // copy all atoms | 
|---|
| [30c753] | 613 | std::map< const atom *, atom *> FatherFinder; | 
|---|
| [59fff1] | 614 | for (iterator iter = begin(); iter != end(); ++iter) { | 
|---|
|  | 615 | atom * const copy_atom = copy->AddCopyAtom(*iter); | 
|---|
| [c67ff9] | 616 | copy_atom->setPosition(copy_atom->getPosition() + offset); | 
|---|
| [30c753] | 617 | FatherFinder.insert( std::make_pair( *iter, copy_atom ) ); | 
|---|
|  | 618 | } | 
|---|
| [042f82] | 619 |  | 
|---|
|  | 620 | // copy all bonds | 
|---|
| [30c753] | 621 | for(const_iterator AtomRunner = begin(); AtomRunner != end(); ++AtomRunner) { | 
|---|
| [9d83b6] | 622 | const BondList& ListOfBonds = (*AtomRunner)->getListOfBonds(); | 
|---|
|  | 623 | for(BondList::const_iterator BondRunner = ListOfBonds.begin(); | 
|---|
|  | 624 | BondRunner != ListOfBonds.end(); | 
|---|
|  | 625 | ++BondRunner) | 
|---|
| [e08c46] | 626 | if ((*BondRunner)->leftatom == *AtomRunner) { | 
|---|
| [88c8ec] | 627 | bond::ptr Binder = (*BondRunner); | 
|---|
| [e08c46] | 628 | // get the pendant atoms of current bond in the copy molecule | 
|---|
| [30c753] | 629 | ASSERT(FatherFinder.count(Binder->leftatom), | 
|---|
| [59fff1] | 630 | "molecule::CopyMolecule() - No copy of original left atom " | 
|---|
|  | 631 | +toString(Binder->leftatom)+" for bond copy found"); | 
|---|
| [30c753] | 632 | ASSERT(FatherFinder.count(Binder->rightatom), | 
|---|
| [59fff1] | 633 | "molecule::CopyMolecule() - No copy of original right atom " | 
|---|
|  | 634 | +toString(Binder->rightatom)+"  for bond copy found"); | 
|---|
| [30c753] | 635 | atom * const LeftAtom = FatherFinder[Binder->leftatom]; | 
|---|
|  | 636 | atom * const RightAtom = FatherFinder[Binder->rightatom]; | 
|---|
|  | 637 |  | 
|---|
| [1f693d] | 638 | bond::ptr const NewBond = copy->AddBond(LeftAtom, RightAtom, Binder->getDegree()); | 
|---|
| [e08c46] | 639 | NewBond->Cyclic = Binder->Cyclic; | 
|---|
|  | 640 | if (Binder->Cyclic) | 
|---|
|  | 641 | copy->NoCyclicBonds++; | 
|---|
|  | 642 | NewBond->Type = Binder->Type; | 
|---|
|  | 643 | } | 
|---|
| [9d83b6] | 644 | } | 
|---|
| [042f82] | 645 | // correct fathers | 
|---|
| [30c753] | 646 | //for_each(begin(),end(),mem_fun(&atom::CorrectFather)); | 
|---|
| [cee0b57] | 647 |  | 
|---|
| [042f82] | 648 | return copy; | 
|---|
| [14de469] | 649 | }; | 
|---|
|  | 650 |  | 
|---|
| [89c8b2] | 651 |  | 
|---|
| [9df680] | 652 | /** Destroys all atoms inside this molecule. | 
|---|
|  | 653 | */ | 
|---|
| [a7aebd] | 654 | void removeAtomsinMolecule(molecule *&_mol) | 
|---|
| [9df680] | 655 | { | 
|---|
| [0a5beb] | 656 | // copy list of atoms from molecule as it will be changed | 
|---|
|  | 657 | std::vector<atom *> atoms; | 
|---|
|  | 658 | atoms.resize(_mol->getAtomCount(), NULL); | 
|---|
|  | 659 | std::copy(_mol->begin(), _mol->end(), atoms.begin()); | 
|---|
| [9df680] | 660 | // remove each atom from world | 
|---|
| [0a5beb] | 661 | for(std::vector<atom *>::iterator AtomRunner = atoms.begin(); | 
|---|
|  | 662 | AtomRunner != atoms.end(); ++AtomRunner) | 
|---|
| [9df680] | 663 | World::getInstance().destroyAtom(*AtomRunner); | 
|---|
| [a7aebd] | 664 | // make sure that pointer os not usable | 
|---|
|  | 665 | _mol = NULL; | 
|---|
| [9df680] | 666 | }; | 
|---|
|  | 667 |  | 
|---|
|  | 668 |  | 
|---|
| [89c8b2] | 669 | /** | 
|---|
|  | 670 | * Copies all atoms of a molecule which are within the defined parallelepiped. | 
|---|
|  | 671 | * | 
|---|
|  | 672 | * @param offest for the origin of the parallelepiped | 
|---|
|  | 673 | * @param three vectors forming the matrix that defines the shape of the parallelpiped | 
|---|
|  | 674 | */ | 
|---|
| [c550dd] | 675 | molecule* molecule::CopyMoleculeFromSubRegion(const Shape ®ion) const { | 
|---|
| [5f612ee] | 676 | molecule *copy = World::getInstance().createMolecule(); | 
|---|
| [89c8b2] | 677 |  | 
|---|
| [30c753] | 678 | // copy all atoms | 
|---|
|  | 679 | std::map< const atom *, atom *> FatherFinder; | 
|---|
| [59fff1] | 680 | for (iterator iter = begin(); iter != end(); ++iter) { | 
|---|
| [4e904b] | 681 | if (region.isInside((*iter)->getPosition())) { | 
|---|
| [59fff1] | 682 | atom * const copy_atom = copy->AddCopyAtom(*iter); | 
|---|
| [30c753] | 683 | FatherFinder.insert( std::make_pair( *iter, copy_atom ) ); | 
|---|
| [9df5c6] | 684 | } | 
|---|
|  | 685 | } | 
|---|
| [89c8b2] | 686 |  | 
|---|
| [30c753] | 687 | // copy all bonds | 
|---|
|  | 688 | for(molecule::const_iterator AtomRunner = begin(); AtomRunner != end(); ++AtomRunner) { | 
|---|
|  | 689 | const BondList& ListOfBonds = (*AtomRunner)->getListOfBonds(); | 
|---|
|  | 690 | for(BondList::const_iterator BondRunner = ListOfBonds.begin(); | 
|---|
|  | 691 | BondRunner != ListOfBonds.end(); | 
|---|
|  | 692 | ++BondRunner) | 
|---|
|  | 693 | if ((*BondRunner)->leftatom == *AtomRunner) { | 
|---|
| [88c8ec] | 694 | bond::ptr Binder = (*BondRunner); | 
|---|
| [30c753] | 695 | if ((FatherFinder.count(Binder->leftatom)) | 
|---|
|  | 696 | && (FatherFinder.count(Binder->rightatom))) { | 
|---|
|  | 697 | // if copy present, then it must be from subregion | 
|---|
|  | 698 | atom * const LeftAtom = FatherFinder[Binder->leftatom]; | 
|---|
|  | 699 | atom * const RightAtom = FatherFinder[Binder->rightatom]; | 
|---|
|  | 700 |  | 
|---|
| [1f693d] | 701 | bond::ptr const NewBond = copy->AddBond(LeftAtom, RightAtom, Binder->getDegree()); | 
|---|
| [30c753] | 702 | NewBond->Cyclic = Binder->Cyclic; | 
|---|
|  | 703 | if (Binder->Cyclic) | 
|---|
|  | 704 | copy->NoCyclicBonds++; | 
|---|
|  | 705 | NewBond->Type = Binder->Type; | 
|---|
|  | 706 | } | 
|---|
|  | 707 | } | 
|---|
|  | 708 | } | 
|---|
|  | 709 | // correct fathers | 
|---|
|  | 710 | //for_each(begin(),end(),mem_fun(&atom::CorrectFather)); | 
|---|
|  | 711 |  | 
|---|
| [e138de] | 712 | //TODO: copy->BuildInducedSubgraph(this); | 
|---|
| [89c8b2] | 713 |  | 
|---|
|  | 714 | return copy; | 
|---|
|  | 715 | } | 
|---|
|  | 716 |  | 
|---|
| [14de469] | 717 | /** Adds a bond to a the molecule specified by two atoms, \a *first and \a *second. | 
|---|
|  | 718 | * Also updates molecule::BondCount and molecule::NoNonBonds. | 
|---|
|  | 719 | * \param *first first atom in bond | 
|---|
|  | 720 | * \param *second atom in bond | 
|---|
|  | 721 | * \return pointer to bond or NULL on failure | 
|---|
|  | 722 | */ | 
|---|
| [88c8ec] | 723 | bond::ptr molecule::AddBond(atom *atom1, atom *atom2, int degree) | 
|---|
| [14de469] | 724 | { | 
|---|
| [7d82a5] | 725 | bond::ptr Binder; | 
|---|
| [05a97c] | 726 |  | 
|---|
|  | 727 | // some checks to make sure we are able to create the bond | 
|---|
| [59fff1] | 728 | ASSERT(atom1, | 
|---|
|  | 729 | "molecule::AddBond() - First atom "+toString(atom1) | 
|---|
|  | 730 | +" is not a invalid pointer"); | 
|---|
|  | 731 | ASSERT(atom2, | 
|---|
|  | 732 | "molecule::AddBond() - Second atom "+toString(atom2) | 
|---|
|  | 733 | +" is not a invalid pointer"); | 
|---|
|  | 734 | ASSERT(isInMolecule(atom1), | 
|---|
|  | 735 | "molecule::AddBond() - First atom "+toString(atom1) | 
|---|
|  | 736 | +" is not part of molecule"); | 
|---|
|  | 737 | ASSERT(isInMolecule(atom2), | 
|---|
|  | 738 | "molecule::AddBond() - Second atom "+toString(atom2) | 
|---|
|  | 739 | +" is not part of molecule"); | 
|---|
| [05a97c] | 740 |  | 
|---|
| [7d82a5] | 741 | Binder.reset(new bond(atom1, atom2, degree)); | 
|---|
| [073a9e4] | 742 | atom1->RegisterBond(WorldTime::getTime(), Binder); | 
|---|
|  | 743 | atom2->RegisterBond(WorldTime::getTime(), Binder); | 
|---|
| [59fff1] | 744 | if ((atom1->getType() != NULL) | 
|---|
|  | 745 | && (atom1->getType()->getAtomicNumber() != 1) | 
|---|
|  | 746 | && (atom2->getType() != NULL) | 
|---|
|  | 747 | && (atom2->getType()->getAtomicNumber() != 1)) | 
|---|
| [05a97c] | 748 | NoNonBonds++; | 
|---|
|  | 749 |  | 
|---|
| [042f82] | 750 | return Binder; | 
|---|
| [14de469] | 751 | }; | 
|---|
|  | 752 |  | 
|---|
| [1907a7] | 753 | /** Set molecule::name from the basename without suffix in the given \a *filename. | 
|---|
|  | 754 | * \param *filename filename | 
|---|
|  | 755 | */ | 
|---|
| [d67150] | 756 | void molecule::SetNameFromFilename(const char *filename) | 
|---|
| [1907a7] | 757 | { | 
|---|
| [575343] | 758 | OBSERVE; | 
|---|
| [1907a7] | 759 | int length = 0; | 
|---|
| [f7f7a4] | 760 | const char *molname = strrchr(filename, '/'); | 
|---|
|  | 761 | if (molname != NULL) | 
|---|
|  | 762 | molname += sizeof(char);  // search for filename without dirs | 
|---|
|  | 763 | else | 
|---|
|  | 764 | molname = filename; // contains no slashes | 
|---|
| [49e1ae] | 765 | const char *endname = strchr(molname, '.'); | 
|---|
| [1907a7] | 766 | if ((endname == NULL) || (endname < molname)) | 
|---|
|  | 767 | length = strlen(molname); | 
|---|
|  | 768 | else | 
|---|
|  | 769 | length = strlen(molname) - strlen(endname); | 
|---|
| [35b698] | 770 | cout << "Set name of molecule " << getId() << " to " << molname << endl; | 
|---|
| [1907a7] | 771 | strncpy(name, molname, length); | 
|---|
| [d67150] | 772 | name[length]='\0'; | 
|---|
| [1907a7] | 773 | }; | 
|---|
|  | 774 |  | 
|---|
| [cee0b57] | 775 | /** Removes atom from molecule list, but does not delete it. | 
|---|
|  | 776 | * \param *pointer atom to be removed | 
|---|
|  | 777 | * \return true - succeeded, false - atom not found in list | 
|---|
| [f3278b] | 778 | */ | 
|---|
| [cee0b57] | 779 | bool molecule::UnlinkAtom(atom *pointer) | 
|---|
| [f3278b] | 780 | { | 
|---|
| [cee0b57] | 781 | if (pointer == NULL) | 
|---|
|  | 782 | return false; | 
|---|
| [2e4105] | 783 | pointer->removeFromMolecule(); | 
|---|
| [cee0b57] | 784 | return true; | 
|---|
| [f3278b] | 785 | }; | 
|---|
|  | 786 |  | 
|---|
| [cee0b57] | 787 | /** Removes every atom from molecule list. | 
|---|
|  | 788 | * \return true - succeeded, false - atom not found in list | 
|---|
| [14de469] | 789 | */ | 
|---|
| [cee0b57] | 790 | bool molecule::CleanupMolecule() | 
|---|
| [14de469] | 791 | { | 
|---|
| [9879f6] | 792 | for (molecule::iterator iter = begin(); !empty(); iter = begin()) | 
|---|
| [2e4105] | 793 | (*iter)->removeFromMolecule(); | 
|---|
| [274d45] | 794 | return empty(); | 
|---|
| [69eb71] | 795 | }; | 
|---|
| [14de469] | 796 |  | 
|---|
| [cee0b57] | 797 | /** Finds an atom specified by its continuous number. | 
|---|
|  | 798 | * \param Nr number of atom withim molecule | 
|---|
|  | 799 | * \return pointer to atom or NULL | 
|---|
| [14de469] | 800 | */ | 
|---|
| [9879f6] | 801 | atom * molecule::FindAtom(int Nr)  const | 
|---|
|  | 802 | { | 
|---|
| [c6ab91] | 803 | LocalToGlobalId_t::const_iterator iter = LocalToGlobalId.find(Nr); | 
|---|
|  | 804 | if (iter != LocalToGlobalId.end()) { | 
|---|
| [47d041] | 805 | //LOG(0, "Found Atom Nr. " << walker->getNr()); | 
|---|
| [c6ab91] | 806 | return iter->second; | 
|---|
| [cee0b57] | 807 | } else { | 
|---|
| [ca8bea] | 808 | ELOG(1, "Atom with Nr " << Nr << " not found in molecule " << getName() << "'s list."); | 
|---|
| [cee0b57] | 809 | return NULL; | 
|---|
| [042f82] | 810 | } | 
|---|
| [59fff1] | 811 | } | 
|---|
|  | 812 |  | 
|---|
|  | 813 | /** Checks whether the given atom is a member of this molecule. | 
|---|
|  | 814 | * | 
|---|
|  | 815 | *  We make use here of molecule::atomIds to get a result on | 
|---|
|  | 816 | * | 
|---|
|  | 817 | * @param _atom atom to check | 
|---|
|  | 818 | * @return true - is member, false - is not | 
|---|
|  | 819 | */ | 
|---|
|  | 820 | bool molecule::isInMolecule(const atom * const _atom) | 
|---|
|  | 821 | { | 
|---|
|  | 822 | ASSERT(_atom->getMolecule() == this, | 
|---|
|  | 823 | "molecule::isInMolecule() - atom is not designated to be in molecule '" | 
|---|
|  | 824 | +toString(this->getName())+"'."); | 
|---|
| [8e1f901] | 825 | molecule::const_iterator iter = atomIds.find(_atom->getId()); | 
|---|
| [59fff1] | 826 | return (iter != atomIds.end()); | 
|---|
|  | 827 | } | 
|---|
| [14de469] | 828 |  | 
|---|
| [cee0b57] | 829 | /** Asks for atom number, and checks whether in list. | 
|---|
|  | 830 | * \param *text question before entering | 
|---|
| [a6b7fb] | 831 | */ | 
|---|
| [955b91] | 832 | atom * molecule::AskAtom(std::string text) | 
|---|
| [a6b7fb] | 833 | { | 
|---|
| [cee0b57] | 834 | int No; | 
|---|
|  | 835 | atom *ion = NULL; | 
|---|
|  | 836 | do { | 
|---|
| [47d041] | 837 | //std::cout << "============Atom list==========================" << std::endl; | 
|---|
| [cee0b57] | 838 | //mol->Output((ofstream *)&cout); | 
|---|
| [47d041] | 839 | //std::cout << "===============================================" << std::endl; | 
|---|
|  | 840 | std::cout << text; | 
|---|
| [cee0b57] | 841 | cin >> No; | 
|---|
|  | 842 | ion = this->FindAtom(No); | 
|---|
|  | 843 | } while (ion == NULL); | 
|---|
|  | 844 | return ion; | 
|---|
| [a6b7fb] | 845 | }; | 
|---|
|  | 846 |  | 
|---|
| [cee0b57] | 847 | /** Checks if given coordinates are within cell volume. | 
|---|
|  | 848 | * \param *x array of coordinates | 
|---|
|  | 849 | * \return true - is within, false - out of cell | 
|---|
| [14de469] | 850 | */ | 
|---|
| [cee0b57] | 851 | bool molecule::CheckBounds(const Vector *x) const | 
|---|
| [14de469] | 852 | { | 
|---|
| [cca9ef] | 853 | const RealSpaceMatrix &domain = World::getInstance().getDomain().getM(); | 
|---|
| [cee0b57] | 854 | bool result = true; | 
|---|
|  | 855 | for (int i=0;i<NDIM;i++) { | 
|---|
| [84c494] | 856 | result = result && ((x->at(i) >= 0) && (x->at(i) < domain.at(i,i))); | 
|---|
| [042f82] | 857 | } | 
|---|
| [cee0b57] | 858 | //return result; | 
|---|
|  | 859 | return true; /// probably not gonna use the check no more | 
|---|
| [69eb71] | 860 | }; | 
|---|
| [14de469] | 861 |  | 
|---|
| [cee0b57] | 862 | /** Prints molecule to *out. | 
|---|
|  | 863 | * \param *out output stream | 
|---|
| [14de469] | 864 | */ | 
|---|
| [e4afb4] | 865 | bool molecule::Output(ostream * const output) const | 
|---|
| [14de469] | 866 | { | 
|---|
| [e138de] | 867 | if (output == NULL) { | 
|---|
| [cee0b57] | 868 | return false; | 
|---|
|  | 869 | } else { | 
|---|
| [0ba410] | 870 | int AtomNo[MAX_ELEMENTS]; | 
|---|
|  | 871 | memset(AtomNo,0,(MAX_ELEMENTS-1)*sizeof(*AtomNo)); | 
|---|
|  | 872 | enumeration<const element*> elementLookup = formula.enumerateElements(); | 
|---|
|  | 873 | *output << "#Ion_TypeNr._Nr.R[0]    R[1]    R[2]    MoveType (0 MoveIon, 1 FixedIon)" << endl; | 
|---|
| [30c753] | 874 | for_each(begin(),end(),boost::bind(&atom::OutputArrayIndexed,_1,output,elementLookup,AtomNo,(const char*)0)); | 
|---|
| [cee0b57] | 875 | return true; | 
|---|
| [042f82] | 876 | } | 
|---|
| [14de469] | 877 | }; | 
|---|
|  | 878 |  | 
|---|
| [266237] | 879 | /** Outputs contents of each atom::ListOfBonds. | 
|---|
| [cee0b57] | 880 | * \param *out output stream | 
|---|
| [14de469] | 881 | */ | 
|---|
| [e138de] | 882 | void molecule::OutputListOfBonds() const | 
|---|
| [14de469] | 883 | { | 
|---|
| [4b5cf8] | 884 | std::stringstream output; | 
|---|
|  | 885 | LOG(2, "From Contents of ListOfBonds, all atoms:"); | 
|---|
|  | 886 | for (molecule::const_iterator iter = begin(); | 
|---|
|  | 887 | iter != end(); | 
|---|
|  | 888 | ++iter) { | 
|---|
|  | 889 | (*iter)->OutputBondOfAtom(output); | 
|---|
|  | 890 | output << std::endl << "\t\t"; | 
|---|
|  | 891 | } | 
|---|
|  | 892 | LOG(2, output.str()); | 
|---|
|  | 893 | } | 
|---|
| [14de469] | 894 |  | 
|---|
| [cee0b57] | 895 | /** Brings molecule::AtomCount and atom::*Name up-to-date. | 
|---|
| [14de469] | 896 | * \param *out output stream for debugging | 
|---|
|  | 897 | */ | 
|---|
| [e791dc] | 898 | size_t molecule::doCountNoNonHydrogen() const | 
|---|
| [14de469] | 899 | { | 
|---|
| [e791dc] | 900 | int temp = 0; | 
|---|
| [560bbe] | 901 | // go through atoms and look for new ones | 
|---|
|  | 902 | for (molecule::const_iterator iter = begin(); iter != end(); ++iter) | 
|---|
| [83f176] | 903 | if ((*iter)->getType()->getAtomicNumber() != 1) // count non-hydrogen atoms whilst at it | 
|---|
| [e791dc] | 904 | ++temp; | 
|---|
|  | 905 | return temp; | 
|---|
| [cee0b57] | 906 | }; | 
|---|
| [042f82] | 907 |  | 
|---|
| [458c31] | 908 | /** Counts the number of present bonds. | 
|---|
|  | 909 | * \return number of bonds | 
|---|
|  | 910 | */ | 
|---|
|  | 911 | int molecule::doCountBonds() const | 
|---|
|  | 912 | { | 
|---|
|  | 913 | unsigned int counter = 0; | 
|---|
|  | 914 | for(molecule::const_iterator AtomRunner = begin(); AtomRunner != end(); ++AtomRunner) { | 
|---|
|  | 915 | const BondList& ListOfBonds = (*AtomRunner)->getListOfBonds(); | 
|---|
|  | 916 | for(BondList::const_iterator BondRunner = ListOfBonds.begin(); | 
|---|
|  | 917 | BondRunner != ListOfBonds.end(); | 
|---|
|  | 918 | ++BondRunner) | 
|---|
|  | 919 | if ((*BondRunner)->leftatom == *AtomRunner) | 
|---|
|  | 920 | counter++; | 
|---|
|  | 921 | } | 
|---|
|  | 922 | return counter; | 
|---|
|  | 923 | } | 
|---|
|  | 924 |  | 
|---|
|  | 925 |  | 
|---|
| [14de469] | 926 | /** Returns an index map for two father-son-molecules. | 
|---|
|  | 927 | * The map tells which atom in this molecule corresponds to which one in the other molecul with their fathers. | 
|---|
|  | 928 | * \param *out output stream for debugging | 
|---|
|  | 929 | * \param *OtherMolecule corresponding molecule with fathers | 
|---|
|  | 930 | * \return allocated map of size molecule::AtomCount with map | 
|---|
|  | 931 | * \todo make this with a good sort O(n), not O(n^2) | 
|---|
|  | 932 | */ | 
|---|
| [e138de] | 933 | int * molecule::GetFatherSonAtomicMap(molecule *OtherMolecule) | 
|---|
| [14de469] | 934 | { | 
|---|
| [47d041] | 935 | LOG(3, "Begin of GetFatherAtomicMap."); | 
|---|
| [1024cb] | 936 | int *AtomicMap = new int[getAtomCount()]; | 
|---|
| [ea7176] | 937 | for (int i=getAtomCount();i--;) | 
|---|
| [042f82] | 938 | AtomicMap[i] = -1; | 
|---|
|  | 939 | if (OtherMolecule == this) {  // same molecule | 
|---|
| [ea7176] | 940 | for (int i=getAtomCount();i--;) // no need as -1 means already that there is trivial correspondence | 
|---|
| [042f82] | 941 | AtomicMap[i] = i; | 
|---|
| [47d041] | 942 | LOG(4, "Map is trivial."); | 
|---|
| [042f82] | 943 | } else { | 
|---|
| [47d041] | 944 | std::stringstream output; | 
|---|
|  | 945 | output << "Map is "; | 
|---|
| [9879f6] | 946 | for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { | 
|---|
| [910a5d] | 947 | if ((*iter)->getFather() == NULL) { | 
|---|
| [735b1c] | 948 | AtomicMap[(*iter)->getNr()] = -2; | 
|---|
| [042f82] | 949 | } else { | 
|---|
| [9879f6] | 950 | for (molecule::const_iterator runner = OtherMolecule->begin(); runner != OtherMolecule->end(); ++runner) { | 
|---|
| [042f82] | 951 | //for (int i=0;i<AtomCount;i++) { // search atom | 
|---|
| [1024cb] | 952 | //for (int j=0;j<OtherMolecule->getAtomCount();j++) { | 
|---|
| [910a5d] | 953 | //LOG(4, "Comparing father " << (*iter)->getFather() << " with the other one " << (*runner)->getFather() << "."); | 
|---|
|  | 954 | if ((*iter)->getFather() == (*runner)) | 
|---|
| [735b1c] | 955 | AtomicMap[(*iter)->getNr()] = (*runner)->getNr(); | 
|---|
| [042f82] | 956 | } | 
|---|
|  | 957 | } | 
|---|
| [47d041] | 958 | output << AtomicMap[(*iter)->getNr()] << "\t"; | 
|---|
| [042f82] | 959 | } | 
|---|
| [47d041] | 960 | LOG(4, output.str()); | 
|---|
| [042f82] | 961 | } | 
|---|
| [47d041] | 962 | LOG(3, "End of GetFatherAtomicMap."); | 
|---|
| [042f82] | 963 | return AtomicMap; | 
|---|
| [14de469] | 964 | }; | 
|---|
|  | 965 |  | 
|---|
| [4a7776a] | 966 |  | 
|---|
| [c68025] | 967 | void molecule::flipActiveFlag(){ | 
|---|
|  | 968 | ActiveFlag = !ActiveFlag; | 
|---|
|  | 969 | } | 
|---|
| [560bbe] | 970 |  | 
|---|
| [aeb694] | 971 | Shape molecule::getBoundingShape(const double scale) const | 
|---|
|  | 972 | { | 
|---|
|  | 973 | // create Sphere around every atom | 
|---|
|  | 974 | if (empty()) | 
|---|
|  | 975 | return Nowhere(); | 
|---|
|  | 976 | const_iterator iter = begin(); | 
|---|
|  | 977 | const Vector center = (*iter)->getPosition(); | 
|---|
|  | 978 | const double vdWRadius = (*iter)->getElement().getVanDerWaalsRadius(); | 
|---|
|  | 979 | Shape BoundingShape = Sphere(center, vdWRadius*scale); | 
|---|
|  | 980 | for(++iter; iter != end(); ++iter) { | 
|---|
|  | 981 | const Vector center = (*iter)->getPosition(); | 
|---|
|  | 982 | const double vdWRadius = (*iter)->getElement().getVanDerWaalsRadius(); | 
|---|
|  | 983 | if (vdWRadius*scale != 0.) | 
|---|
|  | 984 | BoundingShape = Sphere(center, vdWRadius*scale) || BoundingShape; | 
|---|
|  | 985 | } | 
|---|
|  | 986 | return BoundingShape; | 
|---|
|  | 987 | } | 
|---|
|  | 988 |  | 
|---|
|  | 989 | Shape molecule::getBoundingSphere(const double boundary) const | 
|---|
| [c67ff9] | 990 | { | 
|---|
|  | 991 | // get center and radius | 
|---|
|  | 992 | Vector center; | 
|---|
|  | 993 | double radius = 0.; | 
|---|
|  | 994 | { | 
|---|
|  | 995 | center.Zero(); | 
|---|
|  | 996 | for(const_iterator iter = begin(); iter != end(); ++iter) | 
|---|
|  | 997 | center += (*iter)->getPosition(); | 
|---|
| [8c001a] | 998 | if (begin() != end()) | 
|---|
|  | 999 | center *= 1./(double)size(); | 
|---|
| [c67ff9] | 1000 | for(const_iterator iter = begin(); iter != end(); ++iter) { | 
|---|
|  | 1001 | const Vector &position = (*iter)->getPosition(); | 
|---|
|  | 1002 | const double temp_distance = position.DistanceSquared(center); | 
|---|
|  | 1003 | if (temp_distance > radius) | 
|---|
|  | 1004 | radius = temp_distance; | 
|---|
|  | 1005 | } | 
|---|
|  | 1006 | } | 
|---|
|  | 1007 | // convert radius to true value and add some small boundary | 
|---|
| [55feea1] | 1008 | radius = sqrt(radius) + boundary + 1e+6*std::numeric_limits<double>::epsilon(); | 
|---|
| [c67ff9] | 1009 | LOG(1, "INFO: The " << size() << " atoms of the molecule are contained in a sphere at " | 
|---|
|  | 1010 | << center << " with radius " << radius << "."); | 
|---|
|  | 1011 |  | 
|---|
| [f24af7] | 1012 | // TODO: When we do not use a Sphere here anymore, then FillRegularGridAction will | 
|---|
|  | 1013 | // will not work as it expects a sphere due to possible random rotations. | 
|---|
| [c67ff9] | 1014 | Shape BoundingShape(Sphere(center, radius)); | 
|---|
|  | 1015 | LOG(1, "INFO: Created sphere at " << BoundingShape.getCenter() << " and radius " | 
|---|
|  | 1016 | << BoundingShape.getRadius() << "."); | 
|---|
|  | 1017 | return BoundingShape; | 
|---|
|  | 1018 | } | 
|---|
|  | 1019 |  | 
|---|
| [c32d21] | 1020 | void molecule::update(Observable *publisher) | 
|---|
|  | 1021 | { | 
|---|
|  | 1022 | ASSERT(0, "molecule::update() - did not sign on for any general updates."); | 
|---|
|  | 1023 | } | 
|---|
|  | 1024 |  | 
|---|
|  | 1025 | void molecule::recieveNotification(Observable *publisher, Notification_ptr notification) | 
|---|
|  | 1026 | { | 
|---|
|  | 1027 | const atom * const _atom = dynamic_cast<atom *>(publisher); | 
|---|
|  | 1028 | if ((_atom != NULL) && containsAtom(_atom)) { | 
|---|
|  | 1029 | #ifdef LOG_OBSERVER | 
|---|
|  | 1030 | observerLog().addMessage() << "++ Update of Observer "<< observerLog().getName(static_cast<Observer *>(this)) | 
|---|
|  | 1031 | << " received notification from atom " << _atom->getId() << " for channel " | 
|---|
|  | 1032 | << notification->getChannelNo() << "."; | 
|---|
|  | 1033 | #endif | 
|---|
|  | 1034 | switch (notification->getChannelNo()) { | 
|---|
|  | 1035 | case AtomObservable::PositionChanged: | 
|---|
|  | 1036 | { | 
|---|
|  | 1037 | // emit others about one of our atoms moved | 
|---|
|  | 1038 | _lastchangedatom = const_cast<atom *>(_atom); | 
|---|
|  | 1039 | OBSERVE; | 
|---|
|  | 1040 | NOTIFY(AtomMoved); | 
|---|
|  | 1041 | break; | 
|---|
|  | 1042 | } | 
|---|
|  | 1043 | default: | 
|---|
|  | 1044 | ASSERT( 0, "molecule::recieveNotification() - we did not sign up for channel " | 
|---|
|  | 1045 | +toString(notification->getChannelNo())); | 
|---|
|  | 1046 | break; | 
|---|
|  | 1047 | } | 
|---|
|  | 1048 | } | 
|---|
|  | 1049 | } | 
|---|
|  | 1050 |  | 
|---|
|  | 1051 | void molecule::subjectKilled(Observable *publisher) | 
|---|
|  | 1052 | { | 
|---|
|  | 1053 | // do nothing, atom does it all | 
|---|
|  | 1054 | } | 
|---|
|  | 1055 |  | 
|---|
|  | 1056 |  | 
|---|
| [560bbe] | 1057 | // construct idpool | 
|---|
|  | 1058 | CONSTRUCT_IDPOOL(atomId_t, continuousId) | 
|---|
| [c67ff9] | 1059 |  | 
|---|