source: src/molecule.hpp@ 93eae36

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 93eae36 was 6aad6f, checked in by Frederik Heber <heber@…>, 13 years ago

FIX: molecule::containsAtom() is now const and has const param, added AtomIdSet::contains().

  • AtomIdSet::contains() is predicate to whether id is contained, added unit test function.
  • also added molecule::containsAtom() on atomic id only.
  • Property mode set to 100755
File size: 8.7 KB
Line 
1/** \file molecule.hpp
2 *
3 * Class definitions of atom and molecule, element and periodentafel
4 */
5
6#ifndef MOLECULES_HPP_
7#define MOLECULES_HPP_
8
9/*********************************************** includes ***********************************/
10
11#ifdef HAVE_CONFIG_H
12#include <config.h>
13#endif
14
15//// STL headers
16#include <map>
17#include <set>
18#include <stack>
19#include <deque>
20#include <list>
21#include <vector>
22
23#include <string>
24
25#include "AtomIdSet.hpp"
26#include "Atom/AtomSet.hpp"
27#include "CodePatterns/Cacheable.hpp"
28#include "CodePatterns/Observer/Observable.hpp"
29#include "Descriptors/AtomIdDescriptor.hpp"
30#include "Fragmentation/HydrogenSaturation_enum.hpp"
31#include "Formula.hpp"
32#include "Helpers/defs.hpp"
33#include "IdPool_policy.hpp"
34#include "IdPool.hpp"
35#include "Shapes/Shape.hpp"
36#include "types.hpp"
37
38/****************************************** forward declarations *****************************/
39
40class atom;
41class bond;
42class BondedParticle;
43class BondGraph;
44class DepthFirstSearchAnalysis;
45class element;
46class ForceMatrix;
47class Graph;
48class LinkedCell_deprecated;
49class molecule;
50class MoleculeLeafClass;
51class MoleculeListClass;
52class MoleculeUnittest;
53class RealSpaceMatrix;
54class Vector;
55
56/************************************* Class definitions ****************************************/
57
58/** The complete molecule.
59 * Class incorporates number of types
60 */
61class molecule : public Observable
62{
63 //!> grant unit test access
64 friend class MoleculeUnittest;
65 //!> function may access cstor
66 friend molecule *NewMolecule();
67 //!> function may access dstor
68 friend void DeleteMolecule(molecule *);
69
70public:
71 typedef AtomIdSet::atomIdSet atomIdSet;
72 typedef AtomIdSet::iterator iterator;
73 typedef AtomIdSet::const_iterator const_iterator;
74
75 int MDSteps; //!< The number of MD steps in Trajectories
76 mutable int NoNonBonds; //!< number of non-hydrogen bonds in molecule
77 mutable int NoCyclicBonds; //!< number of cyclic bonds in molecule, by DepthFirstSearchAnalysis()
78 bool ActiveFlag; //!< in a MoleculeListClass used to discern active from inactive molecules
79 int IndexNr; //!< index of molecule in a MoleculeListClass
80 char name[MAXSTRINGSIZE]; //!< arbitrary name
81
82private:
83 Formula formula;
84 Cacheable<size_t> NoNonHydrogen; //!< number of non-hydrogen atoms in molecule
85 Cacheable<int> BondCount; //!< number of atoms, brought up-to-date by doCountBonds()
86 moleculeId_t id;
87 AtomIdSet atomIds; //<!set of atomic ids to check uniqueness of atoms
88 IdPool<atomId_t, uniqueId> atomIdPool; //!< pool of internal ids such that way may guarantee uniqueness
89
90protected:
91
92 molecule();
93 virtual ~molecule();
94
95public:
96 //getter and setter
97 const std::string getName() const;
98 int getAtomCount() const;
99 size_t doCountNoNonHydrogen() const;
100 size_t getNoNonHydrogen() const;
101 int getBondCount() const;
102 int doCountBonds() const;
103 moleculeId_t getId() const;
104 void setId(moleculeId_t);
105 void setName(const std::string);
106 const Formula &getFormula() const;
107 unsigned int getElementCount() const;
108 bool hasElement(const element*) const;
109 bool hasElement(atomicNumber_t) const;
110 bool hasElement(const std::string&) const;
111
112 virtual bool changeId(atomId_t newId);
113
114 World::AtomComposite getAtomSet() const;
115
116 // simply pass on all functions to AtomIdSet
117 iterator begin() {
118 return atomIds.begin();
119 }
120 const_iterator begin() const
121 {
122 return atomIds.begin();
123 }
124 iterator end()
125 {
126 return atomIds.end();
127 }
128 const_iterator end() const
129 {
130 return atomIds.end();
131 }
132 bool empty() const
133 {
134 return atomIds.empty();
135 }
136 size_t size() const
137 {
138 return atomIds.size();
139 }
140 const_iterator find(atom * key) const
141 {
142 return atomIds.find(key);
143 }
144
145 /** Returns the set of atomic ids contained in this molecule.
146 *
147 * @return set of atomic ids
148 */
149 const atomIdSet & getAtomIds() const {
150 return atomIds.getAtomIds();
151 }
152
153 std::pair<iterator, bool> insert(atom * const key);
154
155 /** Predicate whether given \a key is contained in this molecule.
156 *
157 * @param key atom to check
158 * @return true - is contained, false - else
159 */
160 bool containsAtom(const atom* key) const
161 {
162 return atomIds.contains(key);
163 }
164
165 /** Predicate whether given \a id is contained in this molecule.
166 *
167 * @param id atomic id to check
168 * @return true - is contained, false - else
169 */
170 bool containsAtom(const atomId_t id) const
171 {
172 return atomIds.contains(id);
173 }
174
175private:
176 friend void atom::removeFromMolecule();
177 /** Erase an atom from the list.
178 * \note This should only be called by atom::removeFromMolecule(),
179 * otherwise it is not assured that the atom knows about it.
180 *
181 * @param loc locator to atom in list
182 * @return iterator to just after removed item (compliant with standard)
183 */
184 const_iterator erase(const_iterator loc);
185
186 /** Erase an atom from the list.
187 * \note This should only be called by atom::removeFromMolecule(),
188 * otherwise it is not assured that the atom knows about it.
189 *
190 * @param *key key to atom in list
191 * @return iterator to just after removed item (compliant with standard)
192 */
193 const_iterator erase(atom * key);
194
195private:
196 friend bool atom::changeNr(int newId);
197 /**
198 * used when changing an ParticleInfo::Nr.
199 * Note that this number is local with this molecule.
200 * Unless you are calling this method from inside an atom don't fiddle with the third parameter.
201 *
202 * @param oldNr old Nr
203 * @param newNr new Nr to set
204 * @param *target ref to atom
205 * @return indicates wether the change could be done or not.
206 */
207 bool changeAtomNr(int oldNr, int newNr, atom* target=0);
208
209 /** Sets the name of the atom.
210 *
211 * The name is set via its element symbol and its internal ParticleInfo::Nr.
212 *
213 * @param _atom atom whose name to set
214 */
215 void setAtomName(atom *_atom) const;
216
217public:
218
219 /** Function to create a bounding spherical shape for the currently associated atoms.
220 *
221 */
222 Shape getBoundingShape() const;
223
224 /// remove atoms from molecule.
225 bool AddAtom(atom *pointer);
226 bool RemoveAtom(atom *pointer);
227 bool UnlinkAtom(atom *pointer);
228 bool CleanupMolecule();
229 void removeAtomsinMolecule();
230
231 /// Add/remove atoms to/from molecule.
232 atom * AddCopyAtom(atom *pointer);
233 bool AddHydrogenReplacementAtom(bond *Bond, atom *BottomOrigin, atom *TopOrigin, atom *TopReplacement, bool IsAngstroem);
234 bond * AddBond(atom *first, atom *second, int degree = 1);
235 bool RemoveBond(bond *pointer);
236 bool RemoveBonds(atom *BondPartner);
237 bool hasBondStructure() const;
238
239 /// Find atoms.
240 atom * FindAtom(int Nr) const;
241 atom * AskAtom(std::string text);
242 bool isInMolecule(const atom * const _atom);
243
244 /// Count and change present atoms' coordination.
245 bool CenterInBox();
246 bool BoundInBox();
247 void CenterEdge(Vector *max);
248 void CenterOrigin();
249 void CenterPeriodic();
250 void CenterAtVector(Vector *newcenter);
251 void Translate(const Vector *x);
252 void TranslatePeriodically(const Vector *trans);
253 void Mirror(const Vector *x);
254 void Align(Vector *n);
255 void Scale(const double ** const factor);
256 void DeterminePeriodicCenter(Vector &center, const enum HydrogenSaturation _saturation = DoSaturate);
257 Vector * DetermineCenterOfGravity() const;
258 Vector * DetermineCenterOfAll() const;
259 Vector * DetermineCenterOfBox() const;
260 void SetNameFromFilename(const char *filename);
261 void SetBoxDimension(Vector *dim);
262 bool ScanForPeriodicCorrection();
263 double VolumeOfConvexEnvelope(bool IsAngstroem);
264 RealSpaceMatrix getInertiaTensor() const;
265 void RotateToPrincipalAxisSystem(Vector &Axis);
266
267 bool CheckBounds(const Vector *x) const;
268 void GetAlignvector(struct lsq_params * par) const;
269
270 /// Initialising routines in fragmentation
271 void OutputBondsList() const;
272
273 bond * CopyBond(atom *left, atom *right, bond *CopyBond);
274
275 molecule *CopyMolecule(const Vector &offset = zeroVec) const;
276 molecule* CopyMoleculeFromSubRegion(const Shape&) const;
277
278 /// Fragment molecule by two different approaches:
279 bool StoreBondsToFile(std::string filename, std::string path = "");
280 bool StoreAdjacencyToFile(std::string filename, std::string path = "");
281 bool CreateFatherLookupTable(atom **&LookupTable, int count = 0);
282
283 // Recognize doubly appearing molecules in a list of them
284 int * GetFatherSonAtomicMap(molecule *OtherMolecule);
285 bool FillBondStructureFromReference(const molecule * const reference, atom **&ListOfLocalAtoms, bool FreeList = false);
286 bool FillListOfLocalAtoms(atom **&ListOfLocalAtoms, const int GlobalAtomCount);
287
288 // Output routines.
289 bool Output(std::ostream * const output) const;
290 void OutputListOfBonds() const;
291
292 // Manipulation routines
293 void flipActiveFlag();
294
295private:
296 int last_atom; //!< number given to last atom
297};
298
299molecule *NewMolecule();
300void DeleteMolecule(molecule* mol);
301
302
303
304#endif /*MOLECULES_HPP_*/
305
Note: See TracBrowser for help on using the repository browser.