source: src/molecule.cpp@ 1259df

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 1259df was 9b3262b, checked in by Frederik Heber <heber@…>, 9 years ago

FIX: molecule's Formula is not changed when atom changes element.

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