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