source: src/Atom/atom.cpp@ 24edfe

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 24edfe was d05088, checked in by Frederik Heber <heber@…>, 10 years ago

FIX: Atom is notified when its father dies and resets father to itself then.

  • this caused a segfault with FormatParser::save() when a copied molecule's atoms is stored.
  • Property mode set to 100644
File size: 9.1 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 atom.cpp
25 *
26 * Function implementations for the class atom.
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 "atom.hpp"
38#include "AtomObserver.hpp"
39#include "Bond/bond.hpp"
40#include "CodePatterns/Log.hpp"
41#include "config.hpp"
42#include "Element/element.hpp"
43#include "LinearAlgebra/Vector.hpp"
44#include "World.hpp"
45#include "WorldTime.hpp"
46#include "molecule.hpp"
47#include "Shapes/Shape.hpp"
48
49#include <iomanip>
50#include <iostream>
51
52/************************************* Functions for class atom *************************************/
53
54
55atom::atom() :
56 father(this),
57 sort(&Nr),
58 mol(0)
59{
60 // note AtomObserver about inserted atom
61 AtomObserver::getInstance().AtomInserted(this);
62}
63
64atom::atom(atom *pointer) :
65 ParticleInfo(*pointer),
66 AtomInfo(*pointer),
67 father(pointer),
68 sort(&Nr),
69 mol(0)
70{
71 // sign on to father atom to be notified when it is removed
72 father->signOn(this);
73
74 // note AtomObserver about inserted atom
75 AtomObserver::getInstance().AtomInserted(this);
76};
77
78atom *atom::clone(){
79 atom *res = new atom(this);
80 World::getInstance().registerAtom(res);
81 return res;
82}
83
84
85/** Destructor of class atom.
86 */
87atom::~atom()
88{
89 // sign off from possible father
90 if ((father != this) && (father != NULL))
91 father->signOff(this);
92
93 removeFromMolecule();
94 // note AtomObserver about removed atom
95 AtomObserver::getInstance().AtomRemoved(this);
96}
97
98
99void atom::UpdateStep(const unsigned int _step)
100{
101 LOG(4,"atom::UpdateStep() called.");
102 // append to position, velocity and force vector
103 AtomInfo::AppendTrajectoryStep(WorldTime::getTime()+1);
104 // append to ListOfBonds vector
105 BondedParticleInfo::AppendTrajectoryStep(WorldTime::getTime()+1);
106}
107
108void atom::removeStep(const unsigned int _step)
109{
110 LOG(4,"atom::removeStep() called.");
111 // append to position, velocity and force vector
112 AtomInfo::removeTrajectoryStep(_step);
113 // append to ListOfBonds vector
114 BondedParticleInfo::removeTrajectoryStep(_step);
115}
116
117atom *atom::GetTrueFather()
118{
119 const atom *father = const_cast<const atom *>(this)->GetTrueFather();
120 return const_cast<atom *>(father);
121}
122
123const atom *atom::GetTrueFather() const
124{
125 if(father == this){ // top most father is the one that points on itself
126 return this;
127 }
128 else if(!father) {
129 return 0;
130 }
131 else {
132 return father->GetTrueFather();
133 }
134}
135
136void atom::setFather(atom * const _father)
137{
138 // sign off from old father
139 if ((father != this) && (father != NULL))
140 father->signOff(this);
141
142 father = _father;
143 father->signOn(this);
144}
145
146/** Sets father to itself or its father in case of copying a molecule.
147 */
148void atom::CorrectFather()
149{
150 if (father->father != father) // same atom in copy's father points to itself
151// father = this; // set father to itself (copy of a whole molecule)
152// else
153 father = father->father; // set father to original's father
154
155};
156
157void atom::EqualsFather ( const atom *ptr, const atom **res ) const
158{
159 if ( ptr == father )
160 *res = this;
161};
162
163bool atom::isFather(const atom *ptr){
164 return ptr==father;
165}
166
167bool atom::OutputIndexed(ofstream * const out, const int ElementNo, const int AtomNo, const char *comment) const
168{
169 if (out != NULL) {
170 *out << "Ion_Type" << ElementNo << "_" << AtomNo << "\t" << fixed << setprecision(9) << showpoint;
171 *out << at(0) << "\t" << at(1) << "\t" << at(2);
172 *out << "\t" << (int)(getFixedIon());
173 if (getAtomicVelocity().Norm() > MYEPSILON)
174 *out << "\t" << scientific << setprecision(6) << getAtomicVelocity()[0] << "\t" << getAtomicVelocity()[1] << "\t" << getAtomicVelocity()[2] << "\t";
175 if (comment != NULL)
176 *out << " # " << comment << endl;
177 else
178 *out << " # molecule nr " << getNr() << endl;
179 return true;
180 } else
181 return false;
182};
183
184bool atom::OutputArrayIndexed(ostream * const out,const enumeration<const element*> &elementLookup, int *AtomNo, const char *comment) const
185{
186 AtomNo[getType()->getAtomicNumber()]++; // increment number
187 if (out != NULL) {
188 const element *elemental = getType();
189 ASSERT(elementLookup.there.find(elemental)!=elementLookup.there.end(),"Type of this atom was not in the formula upon enumeration");
190 *out << "Ion_Type" << elementLookup.there.find(elemental)->second << "_" << AtomNo[elemental->getAtomicNumber()] << "\t" << fixed << setprecision(9) << showpoint;
191 *out << at(0) << "\t" << at(1) << "\t" << at(2);
192 *out << "\t" << getFixedIon();
193 if (getAtomicVelocity().Norm() > MYEPSILON)
194 *out << "\t" << scientific << setprecision(6) << getAtomicVelocity()[0] << "\t" << getAtomicVelocity()[1] << "\t" << getAtomicVelocity()[2] << "\t";
195 if (comment != NULL)
196 *out << " # " << comment << endl;
197 else
198 *out << " # molecule nr " << getNr() << endl;
199 return true;
200 } else
201 return false;
202};
203
204bool atom::Compare(const atom &ptr) const
205{
206 if (getNr() < ptr.getNr())
207 return true;
208 else
209 return false;
210};
211
212double atom::DistanceSquaredToVector(const Vector &origin) const
213{
214 return DistanceSquared(origin);
215};
216
217double atom::DistanceToVector(const Vector &origin) const
218{
219 return distance(origin);
220};
221
222void atom::InitComponentNr()
223{
224 if (ComponentNr != NULL)
225 delete[](ComponentNr);
226 const BondList& ListOfBonds = getListOfBonds();
227 ComponentNr = new int[ListOfBonds.size()+1];
228 for (int i=ListOfBonds.size()+1;i--;)
229 ComponentNr[i] = -1;
230};
231
232void atom::resetGraphNr(){
233 GraphNr=-1;
234}
235
236std::ostream & atom::operator << (std::ostream &ost) const
237{
238 ParticleInfo::operator<<(ost);
239 ost << "," << getPosition();
240 return ost;
241}
242
243std::ostream & operator << (std::ostream &ost, const atom &a)
244{
245 a.ParticleInfo::operator<<(ost);
246 ost << "," << a.getPosition();
247 return ost;
248}
249
250bool operator < (atom &a, atom &b)
251{
252 return a.Compare(b);
253};
254
255World *atom::getWorld(){
256 return world;
257}
258
259void atom::setWorld(World* _world){
260 world = _world;
261}
262
263bool atom::changeId(atomId_t newId){
264 // first we move ourselves in the world
265 // the world lets us know if that succeeded
266 if(world->changeAtomId(id,newId,this)){
267 OBSERVE;
268 id = newId;
269 NOTIFY(IndexChanged);
270 return true;
271 }
272 else{
273 return false;
274 }
275}
276
277void atom::setId(atomId_t _id) {
278 id=_id;
279}
280
281atomId_t atom::getId() const {
282 return id;
283}
284
285void atom::setMolecule(molecule *_mol){
286 // take this atom from the old molecule
287 removeFromMolecule();
288 mol = _mol;
289 if ((mol) && (!mol->containsAtom(this))) {
290 signOn(mol, AtomObservable::PositionChanged);
291 mol->insert(this);
292 }
293}
294
295void atom::unsetMolecule()
296{
297 // take this atom from the old molecule
298 ASSERT(!mol->containsAtom(this),
299 "atom::unsetMolecule() - old molecule "+toString(mol)+" still contains us!");
300 signOff(mol, AtomObservable::PositionChanged);
301 mol = NULL;
302}
303
304molecule* atom::getMolecule() const {
305 return mol;
306}
307
308void atom::removeFromMolecule(){
309 if(mol){
310 if(mol->containsAtom(this)){
311 signOff(mol, AtomObservable::PositionChanged);
312 mol->erase(this);
313 }
314 mol=0;
315 }
316}
317
318bool atom::changeNr(const int newNr)
319{
320 if ((mol) && (mol->changeAtomNr(getNr(),newNr,this))) {
321 return true;
322 } else{
323 return false;
324 }
325}
326
327int atom::getNr() const{
328 return ParticleInfo::getNr();
329}
330
331atom* NewAtom(atomId_t _id){
332 atom * res = new atom();
333 res->setId(_id);
334 return res;
335}
336
337void DeleteAtom(atom* atom){
338 delete atom;
339}
340
341bool compareAtomElements(atom* atom1,atom* atom2){
342 return atom1->getType()->getAtomicNumber() < atom2->getType()->getAtomicNumber();
343}
344/*
345void atom::update(Observable *publisher)
346{}
347
348void atom::recieveNotification(Observable *publisher, Notification_ptr notification)
349{
350 ASSERT(0, "atom::recieveNotification() - we are not signed on to any notifications.");
351}
352*/
353void atom::subjectKilled(Observable *publisher)
354{
355 // as publisher has been half-deallocated (Observable is one of the base classes, hence
356 // becomes destroyed latest), we cannot senibly cast it anymore.
357 // Hence, we simply have to check here whether it is NOT one of the other instances
358 // we are signed on to.
359 father = this;
360 // no need to sign off
361}
Note: See TracBrowser for help on using the repository browser.