source: src/molecule.cpp@ 143263

Action_Thermostats Add_AtomRandomPerturbation Add_FitFragmentPartialChargesAction Add_RotateAroundBondAction Add_SelectAtomByNameAction Added_ParseSaveFragmentResults AddingActions_SaveParseParticleParameters Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_ParticleName_to_Atom Adding_StructOpt_integration_tests AtomFragments Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.5.4 Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator CombiningParticlePotentialParsing Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_BoundInBox_CenterInBox_MoleculeActions Fix_ChargeSampling_PBC Fix_ChronosMutex Fix_FitPartialCharges Fix_FitPotential_needs_atomicnumbers Fix_ForceAnnealing Fix_IndependentFragmentGrids Fix_ParseParticles Fix_ParseParticles_split_forward_backward_Actions Fix_PopActions Fix_QtFragmentList_sorted_selection Fix_Restrictedkeyset_FragmentMolecule Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns Fix_fitting_potentials Fixes ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion FragmentAction_writes_AtomFragments FragmentMolecule_checks_bonddegrees GeometryObjects Gui_Fixes Gui_displays_atomic_force_velocity ImplicitCharges IndependentFragmentGrids IndependentFragmentGrids_IndividualZeroInstances IndependentFragmentGrids_IntegrationTest IndependentFragmentGrids_Sole_NN_Calculation JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix MoreRobust_FragmentAutomation ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PdbParser_setsAtomName PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks Rewrite_FitPartialCharges RotateToPrincipalAxisSystem_UndoRedo SaturateAtoms_findBestMatching SaturateAtoms_singleDegree StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg Switchable_LogView ThirdParty_MPQC_rebuilt_buildsystem TrajectoryDependenant_MaxOrder TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps TremoloParser_setsAtomName Ubuntu_1604_changes stable
Last change on this file since 143263 was f54524, checked in by Frederik Heber <heber@…>, 9 years ago

FIX: Molecule has new signal IndexChanged.

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