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 | using namespace std;
|
---|
10 |
|
---|
11 | /*********************************************** includes ***********************************/
|
---|
12 |
|
---|
13 | // GSL headers
|
---|
14 | #include <gsl/gsl_eigen.h>
|
---|
15 | #include <gsl/gsl_heapsort.h>
|
---|
16 | #include <gsl/gsl_linalg.h>
|
---|
17 | #include <gsl/gsl_matrix.h>
|
---|
18 | #include <gsl/gsl_multimin.h>
|
---|
19 | #include <gsl/gsl_vector.h>
|
---|
20 | #include <gsl/gsl_randist.h>
|
---|
21 |
|
---|
22 | //// STL headers
|
---|
23 | #include <map>
|
---|
24 | #include <set>
|
---|
25 | #include <deque>
|
---|
26 | #include <list>
|
---|
27 | #include <vector>
|
---|
28 |
|
---|
29 | #include <string>
|
---|
30 |
|
---|
31 | #include "defs.hpp"
|
---|
32 | #include "graph.hpp"
|
---|
33 | #include "stackclass.hpp"
|
---|
34 | #include "tesselation.hpp"
|
---|
35 | #include "Patterns/Observer.hpp"
|
---|
36 | #include "Patterns/Cacheable.hpp"
|
---|
37 |
|
---|
38 | /****************************************** forward declarations *****************************/
|
---|
39 |
|
---|
40 | class atom;
|
---|
41 | class bond;
|
---|
42 | class BondedParticle;
|
---|
43 | class BondGraph;
|
---|
44 | class element;
|
---|
45 | class ForceMatrix;
|
---|
46 | class LinkedCell;
|
---|
47 | class molecule;
|
---|
48 | class MoleculeLeafClass;
|
---|
49 | class MoleculeListClass;
|
---|
50 | class periodentafel;
|
---|
51 | class Vector;
|
---|
52 |
|
---|
53 | /******************************** Some definitions for easier reading **********************************/
|
---|
54 |
|
---|
55 | #define MoleculeList list <molecule *>
|
---|
56 | #define MoleculeListTest pair <MoleculeList::iterator, bool>
|
---|
57 |
|
---|
58 | #define DistancePair pair < double, atom* >
|
---|
59 | #define DistanceMap multimap < double, atom* >
|
---|
60 | #define DistanceTestPair pair < DistanceMap::iterator, bool>
|
---|
61 |
|
---|
62 |
|
---|
63 | /************************************* Class definitions ****************************************/
|
---|
64 |
|
---|
65 | /** Structure to contain parameters needed for evaluation of constraint potential.
|
---|
66 | */
|
---|
67 | struct EvaluatePotential
|
---|
68 | {
|
---|
69 | int startstep; //!< start configuration (MDStep in atom::trajectory)
|
---|
70 | int endstep; //!< end configuration (MDStep in atom::trajectory)
|
---|
71 | atom **PermutationMap; //!< gives target ptr for each atom, array of size molecule::AtomCount (this is "x" in \f$ V^{con}(x) \f$ )
|
---|
72 | DistanceMap **DistanceList; //!< distance list of each atom to each atom
|
---|
73 | DistanceMap::iterator *StepList; //!< iterator to ascend through NearestNeighbours \a **DistanceList
|
---|
74 | int *DoubleList; //!< count of which sources want to move to this target, basically the injective measure (>1 -> not injective)
|
---|
75 | DistanceMap::iterator *DistanceIterators; //!< marks which was the last picked target as injective candidate with smallest distance
|
---|
76 | bool IsAngstroem; //!< whether coordinates are in angstroem (true) or bohrradius (false)
|
---|
77 | double *PenaltyConstants; //!< penalty constant in front of each term
|
---|
78 | };
|
---|
79 |
|
---|
80 | #define MaxThermostats 6 //!< maximum number of thermostat entries in Ions#ThermostatNames and Ions#ThermostatImplemented
|
---|
81 | enum thermostats { None, Woodcock, Gaussian, Langevin, Berendsen, NoseHoover }; //!< Thermostat names for output
|
---|
82 |
|
---|
83 |
|
---|
84 | /** The complete molecule.
|
---|
85 | * Class incorporates number of types
|
---|
86 | */
|
---|
87 | class molecule : public PointCloud , public Observable {
|
---|
88 | friend molecule *NewMolecule();
|
---|
89 | friend void DeleteMolecule(molecule *);
|
---|
90 | public:
|
---|
91 | const periodentafel * const elemente; //!< periodic table with each element
|
---|
92 | atom *start; //!< start of atom list
|
---|
93 | atom *end; //!< end of atom list
|
---|
94 | bond *first; //!< start of bond list
|
---|
95 | bond *last; //!< end of bond list
|
---|
96 | int MDSteps; //!< The number of MD steps in Trajectories
|
---|
97 | int AtomCount; //!< number of atoms, brought up-to-date by CountAtoms()
|
---|
98 | int BondCount; //!< number of atoms, brought up-to-date by CountBonds()
|
---|
99 | int ElementCount; //!< how many unique elements are therein
|
---|
100 | int ElementsInMolecule[MAX_ELEMENTS]; //!< list whether element (sorted by atomic number) is alread present or not
|
---|
101 | mutable int NoNonHydrogen; //!< number of non-hydrogen atoms in molecule
|
---|
102 | mutable int NoNonBonds; //!< number of non-hydrogen bonds in molecule
|
---|
103 | mutable int NoCyclicBonds; //!< number of cyclic bonds in molecule, by DepthFirstSearchAnalysis()
|
---|
104 | double BondDistance; //!< typical bond distance used in CreateAdjacencyList() and furtheron
|
---|
105 | bool ActiveFlag; //!< in a MoleculeListClass used to discern active from inactive molecules
|
---|
106 | Vector Center; //!< Center of molecule in a global box
|
---|
107 | int IndexNr; //!< index of molecule in a MoleculeListClass
|
---|
108 | char name[MAXSTRINGSIZE]; //!< arbitrary name
|
---|
109 |
|
---|
110 | private:
|
---|
111 | Cacheable<string> formula;
|
---|
112 | moleculeId_t id;
|
---|
113 | protected:
|
---|
114 | molecule(const periodentafel * const teil);
|
---|
115 | virtual ~molecule();
|
---|
116 |
|
---|
117 |
|
---|
118 | public:
|
---|
119 | //getter and setter
|
---|
120 | const std::string getName();
|
---|
121 | moleculeId_t getId();
|
---|
122 | void setId(moleculeId_t);
|
---|
123 | void setName(const std::string);
|
---|
124 | const std::string getFormula();
|
---|
125 | std::string calcFormula();
|
---|
126 |
|
---|
127 |
|
---|
128 | // re-definition of virtual functions from PointCloud
|
---|
129 | const char * const GetName() const;
|
---|
130 | Vector *GetCenter() const ;
|
---|
131 | TesselPoint *GetPoint() const ;
|
---|
132 | TesselPoint *GetTerminalPoint() const ;
|
---|
133 | int GetMaxId() const;
|
---|
134 | void GoToNext() const ;
|
---|
135 | void GoToPrevious() const ;
|
---|
136 | void GoToFirst() const ;
|
---|
137 | void GoToLast() const ;
|
---|
138 | bool IsEmpty() const ;
|
---|
139 | bool IsEnd() const ;
|
---|
140 |
|
---|
141 | // templates for allowing global manipulation of all vectors
|
---|
142 | template <typename res> void ActOnAllVectors( res (Vector::*f)() ) const;
|
---|
143 | template <typename res> void ActOnAllVectors( res (Vector::*f)() const) const;
|
---|
144 | template <typename res, typename T> void ActOnAllVectors( res (Vector::*f)(T), T t ) const;
|
---|
145 | template <typename res, typename T> void ActOnAllVectors( res (Vector::*f)(T) const, T t ) const;
|
---|
146 | template <typename res, typename T, typename U> void ActOnAllVectors( res (Vector::*f)(T, U), T t, U u ) const;
|
---|
147 | template <typename res, typename T, typename U> void ActOnAllVectors( res (Vector::*f)(T, U) const, T t, U u ) const;
|
---|
148 | template <typename res, typename T, typename U, typename V> void ActOnAllVectors( res (Vector::*f)(T, U, V), T t, U u, V v) const;
|
---|
149 | template <typename res, typename T, typename U, typename V> void ActOnAllVectors( res (Vector::*f)(T, U, V) const, T t, U u, V v) const;
|
---|
150 |
|
---|
151 | // templates for allowing global manipulation of molecule with each atom as single argument
|
---|
152 | template <typename res> void ActWithEachAtom( res (molecule::*f)(atom *) ) const;
|
---|
153 | template <typename res> void ActWithEachAtom( res (molecule::*f)(atom *) const) const;
|
---|
154 |
|
---|
155 | // templates for allowing global copying of molecule with each atom as single argument
|
---|
156 | template <typename res> void ActOnCopyWithEachAtom( res (molecule::*f)(atom *) , molecule *copy) const;
|
---|
157 | template <typename res> void ActOnCopyWithEachAtom( res (molecule::*f)(atom *) const, molecule *copy) const;
|
---|
158 |
|
---|
159 | // templates for allowing global manipulation of all atoms
|
---|
160 | template <typename res, typename typ> void ActOnAllAtoms( res (typ::*f)() ) const;
|
---|
161 | template <typename res, typename typ> void ActOnAllAtoms( res (typ::*f)() const) const;
|
---|
162 | template <typename res, typename typ, typename T> void ActOnAllAtoms( res (typ::*f)(T), T t ) const;
|
---|
163 | template <typename res, typename typ, typename T> void ActOnAllAtoms( res (typ::*f)(T) const, T t ) const;
|
---|
164 | template <typename res, typename typ, typename T, typename U> void ActOnAllAtoms( res (typ::*f)(T, U), T t, U u ) const;
|
---|
165 | template <typename res, typename typ, typename T, typename U> void ActOnAllAtoms( res (typ::*f)(T, U) const, T t, U u ) const;
|
---|
166 | template <typename res, typename typ, typename T, typename U, typename V> void ActOnAllAtoms( res (typ::*f)(T, U, V), T t, U u, V v) const;
|
---|
167 | template <typename res, typename typ, typename T, typename U, typename V> void ActOnAllAtoms( res (typ::*f)(T, U, V) const, T t, U u, V v) const;
|
---|
168 | template <typename res, typename typ, typename T, typename U, typename V, typename W> void ActOnAllAtoms( res (typ::*f)(T, U, V, W), T t, U u, V v, W w) const;
|
---|
169 | template <typename res, typename typ, typename T, typename U, typename V, typename W> void ActOnAllAtoms( res (typ::*f)(T, U, V, W) const, T t, U u, V v, W w) const;
|
---|
170 |
|
---|
171 | // templates for allowing conditional global copying of molecule with each atom as single argument
|
---|
172 | template <typename res> void ActOnCopyWithEachAtomIfTrue( res (molecule::*f)(atom *) , molecule *copy, bool (atom::*condition) () ) const;
|
---|
173 | template <typename res> void ActOnCopyWithEachAtomIfTrue( res (molecule::*f)(atom *) , molecule *copy, bool (atom::*condition) () const ) const;
|
---|
174 | template <typename res> void ActOnCopyWithEachAtomIfTrue( res (molecule::*f)(atom *) const , molecule *copy, bool (atom::*condition) () ) const;
|
---|
175 | template <typename res> void ActOnCopyWithEachAtomIfTrue( res (molecule::*f)(atom *) const , molecule *copy, bool (atom::*condition) () const ) const;
|
---|
176 | template <typename res, typename T> void ActOnCopyWithEachAtomIfTrue( res (molecule::*f)(atom *) , molecule *copy, bool (atom::*condition) (T), T t ) const;
|
---|
177 | template <typename res, typename T> void ActOnCopyWithEachAtomIfTrue( res (molecule::*f)(atom *) , molecule *copy, bool (atom::*condition) (T) const, T t ) const;
|
---|
178 | template <typename res, typename T> void ActOnCopyWithEachAtomIfTrue( res (molecule::*f)(atom *) const , molecule *copy, bool (atom::*condition) (T), T t ) const;
|
---|
179 | template <typename res, typename T> void ActOnCopyWithEachAtomIfTrue( res (molecule::*f)(atom *) const , molecule *copy, bool (atom::*condition) (T) const, T t ) const;
|
---|
180 | template <typename res, typename T, typename U> void ActOnCopyWithEachAtomIfTrue( res (molecule::*f)(atom *) , molecule *copy, bool (atom::*condition) (T, U), T t, U u ) const;
|
---|
181 | template <typename res, typename T, typename U> void ActOnCopyWithEachAtomIfTrue( res (molecule::*f)(atom *) , molecule *copy, bool (atom::*condition) (T, U) const, T t, U u ) const;
|
---|
182 | template <typename res, typename T, typename U> void ActOnCopyWithEachAtomIfTrue( res (molecule::*f)(atom *) const , molecule *copy, bool (atom::*condition) (T, U), T t, U u ) const;
|
---|
183 | template <typename res, typename T, typename U> void ActOnCopyWithEachAtomIfTrue( res (molecule::*f)(atom *) const , molecule *copy, bool (atom::*condition) (T, U) const, T t, U u ) const;
|
---|
184 | template <typename res, typename T, typename U, typename V> void ActOnCopyWithEachAtomIfTrue( res (molecule::*f)(atom *) , molecule *copy, bool (atom::*condition) (T, U, V), T t, U u, V v ) const;
|
---|
185 | template <typename res, typename T, typename U, typename V> void ActOnCopyWithEachAtomIfTrue( res (molecule::*f)(atom *) , molecule *copy, bool (atom::*condition) (T, U, V) const, T t, U u, V v ) const;
|
---|
186 | template <typename res, typename T, typename U, typename V> void ActOnCopyWithEachAtomIfTrue( res (molecule::*f)(atom *) const , molecule *copy, bool (atom::*condition) (T, U, V), T t, U u, V v ) const;
|
---|
187 | template <typename res, typename T, typename U, typename V> void ActOnCopyWithEachAtomIfTrue( res (molecule::*f)(atom *) const , molecule *copy, bool (atom::*condition) (T, U, V) const, T t, U u, V v ) const;
|
---|
188 |
|
---|
189 | // templates for allowing global manipulation of an array with one entry per atom
|
---|
190 | void SetIndexedArrayForEachAtomTo ( atom **array, int ParticleInfo::* index) const;
|
---|
191 | template <typename T> void SetIndexedArrayForEachAtomTo ( T *array, int ParticleInfo::* index, void (*Setor)(T *, T *)) const;
|
---|
192 | template <typename T> void SetIndexedArrayForEachAtomTo ( T *array, int ParticleInfo::* index, void (*Setor)(T *, T *), T t) const;
|
---|
193 | template <typename T> void SetIndexedArrayForEachAtomTo ( T *array, int ParticleInfo::* index, void (*Setor)(T *, T *), T *t) const;
|
---|
194 | template <typename T> void SetIndexedArrayForEachAtomTo ( T *array, int element::* index, void (*Setor)(T *, T *)) const;
|
---|
195 | template <typename T> void SetIndexedArrayForEachAtomTo ( T *array, int element::* index, void (*Setor)(T *, T *), T t) const;
|
---|
196 | template <typename T> void SetIndexedArrayForEachAtomTo ( T *array, int element::* index, void (*Setor)(T *, T *), T *t) const;
|
---|
197 | template <typename T, typename typ> void SetIndexedArrayForEachAtomTo ( T *array, int ParticleInfo::*index, T (atom::*Setor)(typ &), typ atom::*value) const;
|
---|
198 | template <typename T, typename typ> void SetIndexedArrayForEachAtomTo ( T *array, int ParticleInfo::*index, T (atom::*Setor)(typ &) const, typ atom::*value) const;
|
---|
199 | template <typename T, typename typ> void SetIndexedArrayForEachAtomTo ( T *array, int ParticleInfo::*index, T (atom::*Setor)(typ &), typ &vect ) const;
|
---|
200 | template <typename T, typename typ> void SetIndexedArrayForEachAtomTo ( T *array, int ParticleInfo::*index, T (atom::*Setor)(typ &) const, typ &vect ) const;
|
---|
201 |
|
---|
202 | // templates for allowing global manipulation of each atom by entries in an array
|
---|
203 | template <typename T, typename typ, typename typ2> void SetAtomValueToIndexedArray ( T *array, int typ::*index, T typ2::*value ) const;
|
---|
204 | template <typename T, typename typ> void SetAtomValueToValue ( T value, T typ::*ptr ) const;
|
---|
205 |
|
---|
206 | template <typename res, typename typ> res SumPerAtom(res (typ::*f)() ) const;
|
---|
207 | template <typename res, typename typ> res SumPerAtom(res (typ::*f)() const ) const;
|
---|
208 | template <typename res, typename typ, typename T> res SumPerAtom(res (typ::*f)(T) , T t ) const;
|
---|
209 | template <typename res, typename typ, typename T> res SumPerAtom(res (typ::*f)(T) const, T t ) const;
|
---|
210 |
|
---|
211 | /// remove atoms from molecule.
|
---|
212 | bool AddAtom(atom *pointer);
|
---|
213 | bool RemoveAtom(atom *pointer);
|
---|
214 | bool UnlinkAtom(atom *pointer);
|
---|
215 | bool CleanupMolecule();
|
---|
216 |
|
---|
217 | /// Add/remove atoms to/from molecule.
|
---|
218 | atom * AddCopyAtom(atom *pointer);
|
---|
219 | bool AddXYZFile(string filename);
|
---|
220 | bool AddHydrogenReplacementAtom(bond *Bond, atom *BottomOrigin, atom *TopOrigin, atom *TopReplacement, bool IsAngstroem);
|
---|
221 | bond * AddBond(atom *first, atom *second, int degree = 1);
|
---|
222 | bool RemoveBond(bond *pointer);
|
---|
223 | bool RemoveBonds(atom *BondPartner);
|
---|
224 |
|
---|
225 | /// Find atoms.
|
---|
226 | atom * FindAtom(int Nr) const;
|
---|
227 | atom * AskAtom(string text);
|
---|
228 |
|
---|
229 | /// Count and change present atoms' coordination.
|
---|
230 | void CountAtoms();
|
---|
231 | void CountElements();
|
---|
232 | void CalculateOrbitals(class config &configuration);
|
---|
233 | bool CenterInBox();
|
---|
234 | bool BoundInBox();
|
---|
235 | void CenterEdge(Vector *max);
|
---|
236 | void CenterOrigin();
|
---|
237 | void CenterPeriodic();
|
---|
238 | void CenterAtVector(Vector *newcenter);
|
---|
239 | void Translate(const Vector *x);
|
---|
240 | void TranslatePeriodically(const Vector *trans);
|
---|
241 | void Mirror(const Vector *x);
|
---|
242 | void Align(Vector *n);
|
---|
243 | void Scale(const double ** const factor);
|
---|
244 | void DeterminePeriodicCenter(Vector ¢er);
|
---|
245 | Vector * DetermineCenterOfGravity();
|
---|
246 | Vector * DetermineCenterOfAll() const;
|
---|
247 | void SetNameFromFilename(const char *filename);
|
---|
248 | void SetBoxDimension(Vector *dim);
|
---|
249 | void ScanForPeriodicCorrection();
|
---|
250 | bool VerletForceIntegration(char *file, config &configuration);
|
---|
251 | void Thermostats(config &configuration, double ActualTemp, int Thermostat);
|
---|
252 | void PrincipalAxisSystem(bool DoRotate);
|
---|
253 | double VolumeOfConvexEnvelope(bool IsAngstroem);
|
---|
254 |
|
---|
255 | double ConstrainedPotential(struct EvaluatePotential &Params);
|
---|
256 | double MinimiseConstrainedPotential(atom **&permutation, int startstep, int endstep, bool IsAngstroem);
|
---|
257 | void EvaluateConstrainedForces(int startstep, int endstep, atom **PermutationMap, ForceMatrix *Force);
|
---|
258 | bool LinearInterpolationBetweenConfiguration(int startstep, int endstep, const char *prefix, config &configuration, bool MapByIdentity);
|
---|
259 |
|
---|
260 | bool CheckBounds(const Vector *x) const;
|
---|
261 | void GetAlignvector(struct lsq_params * par) const;
|
---|
262 |
|
---|
263 | /// Initialising routines in fragmentation
|
---|
264 | void CreateAdjacencyListFromDbondFile(ifstream *output);
|
---|
265 | void CreateAdjacencyList(double bonddistance, bool IsAngstroem, void (BondGraph::*f)(BondedParticle * const , BondedParticle * const , double &, double &, bool), BondGraph *BG = NULL);
|
---|
266 | int CorrectBondDegree() const;
|
---|
267 | void OutputBondsList() const;
|
---|
268 | void CyclicBondAnalysis() const;
|
---|
269 | void OutputGraphInfoPerAtom() const;
|
---|
270 | void OutputGraphInfoPerBond() const;
|
---|
271 |
|
---|
272 |
|
---|
273 | // Graph analysis
|
---|
274 | MoleculeLeafClass * DepthFirstSearchAnalysis(class StackClass<bond *> *&BackEdgeStack) const;
|
---|
275 | void CyclicStructureAnalysis(class StackClass<bond *> *BackEdgeStack, int *&MinimumRingSize) const;
|
---|
276 | bool PickLocalBackEdges(atom **ListOfLocalAtoms, class StackClass<bond *> *&ReferenceStack, class StackClass<bond *> *&LocalStack) const;
|
---|
277 | bond * FindNextUnused(atom *vertex) const;
|
---|
278 | void SetNextComponentNumber(atom *vertex, int nr) const;
|
---|
279 | void ResetAllBondsToUnused() const;
|
---|
280 | int CountCyclicBonds();
|
---|
281 | bool CheckForConnectedSubgraph(KeySet *Fragment);
|
---|
282 | string GetColor(enum Shading color) const;
|
---|
283 | bond * CopyBond(atom *left, atom *right, bond *CopyBond);
|
---|
284 |
|
---|
285 |
|
---|
286 | molecule *CopyMolecule();
|
---|
287 | molecule* CopyMoleculeFromSubRegion(const Vector offset, const double *parallelepiped) const;
|
---|
288 |
|
---|
289 | /// Fragment molecule by two different approaches:
|
---|
290 | int FragmentMolecule(int Order, config *configuration);
|
---|
291 | bool CheckOrderAtSite(bool *AtomMask, Graph *GlobalKeySetList, int Order, int *MinimumRingSize, char *path = NULL);
|
---|
292 | bool StoreBondsToFile(char *path, char *filename);
|
---|
293 | bool StoreAdjacencyToFile(char *path, char *filename);
|
---|
294 | bool CheckAdjacencyFileAgainstMolecule(char *path, atom **ListOfAtoms);
|
---|
295 | bool ParseOrderAtSiteFromFile(char *path);
|
---|
296 | bool StoreOrderAtSiteFile(char *path);
|
---|
297 | bool StoreForcesFile(MoleculeListClass *BondFragments, char *path, int *SortIndex);
|
---|
298 | bool CreateMappingLabelsToConfigSequence(int *&SortIndex);
|
---|
299 | void BreadthFirstSearchAdd(molecule *Mol, atom **&AddedAtomList, bond **&AddedBondList, atom *Root, bond *Bond, int BondOrder, bool IsAngstroem);
|
---|
300 | /// -# BOSSANOVA
|
---|
301 | void FragmentBOSSANOVA(Graph *&FragmentList, KeyStack &RootStack, int *MinimumRingSize);
|
---|
302 | int PowerSetGenerator(int Order, struct UniqueFragments &FragmentSearch, KeySet RestrictedKeySet);
|
---|
303 | bool BuildInducedSubgraph(const molecule *Father);
|
---|
304 | molecule * StoreFragmentFromKeySet(KeySet &Leaflet, bool IsAngstroem);
|
---|
305 | void SPFragmentGenerator(struct UniqueFragments *FragmentSearch, int RootDistance, bond **BondsSet, int SetDimension, int SubOrder);
|
---|
306 | int LookForRemovalCandidate(KeySet *&Leaf, int *&ShortestPathList);
|
---|
307 | int GuesstimateFragmentCount(int order);
|
---|
308 |
|
---|
309 | // Recognize doubly appearing molecules in a list of them
|
---|
310 | int * IsEqualToWithinThreshold(molecule *OtherMolecule, double threshold);
|
---|
311 | int * GetFatherSonAtomicMap(molecule *OtherMolecule);
|
---|
312 |
|
---|
313 | // Output routines.
|
---|
314 | bool Output(ofstream * const output);
|
---|
315 | bool OutputTrajectories(ofstream * const output);
|
---|
316 | void OutputListOfBonds() const;
|
---|
317 | bool OutputXYZ(ofstream * const output) const;
|
---|
318 | bool OutputTrajectoriesXYZ(ofstream * const output);
|
---|
319 | bool Checkout(ofstream * const output) const;
|
---|
320 | bool OutputTemperatureFromTrajectories(ofstream * const output, int startstep, int endstep);
|
---|
321 |
|
---|
322 | // Manipulation routines
|
---|
323 | void flipActiveFlag();
|
---|
324 |
|
---|
325 | private:
|
---|
326 | int last_atom; //!< number given to last atom
|
---|
327 | mutable atom *InternalPointer; //!< internal pointer for PointCloud
|
---|
328 | };
|
---|
329 |
|
---|
330 | molecule *NewMolecule();
|
---|
331 | void DeleteMolecule(molecule* mol);
|
---|
332 |
|
---|
333 | #include "molecule_template.hpp"
|
---|
334 |
|
---|
335 | /** A list of \a molecule classes.
|
---|
336 | */
|
---|
337 | class MoleculeListClass : public Observable {
|
---|
338 | public:
|
---|
339 | MoleculeList ListOfMolecules; //!< List of the contained molecules
|
---|
340 | int MaxIndex;
|
---|
341 |
|
---|
342 | MoleculeListClass(World *world);
|
---|
343 | ~MoleculeListClass();
|
---|
344 |
|
---|
345 | bool AddHydrogenCorrection(char *path);
|
---|
346 | bool StoreForcesFile(char *path, int *SortIndex);
|
---|
347 | void insert(molecule *mol);
|
---|
348 | molecule * ReturnIndex(int index);
|
---|
349 | bool OutputConfigForListOfFragments(config *configuration, int *SortIndex);
|
---|
350 | int NumberOfActiveMolecules();
|
---|
351 | void Enumerate(ostream *out);
|
---|
352 | void Output(ofstream *out);
|
---|
353 | void DissectMoleculeIntoConnectedSubgraphs(const periodentafel * const periode, config * const configuration);
|
---|
354 | int CountAllAtoms() const;
|
---|
355 |
|
---|
356 | // Methods moved here from the menus
|
---|
357 | // TODO: more refactoring needed on these methods
|
---|
358 | void flipChosen();
|
---|
359 | void createNewMolecule(periodentafel *periode);
|
---|
360 | void loadFromXYZ(periodentafel *periode);
|
---|
361 | void setMoleculeFilename();
|
---|
362 | void parseXYZIntoMolecule();
|
---|
363 | void eraseMolecule();
|
---|
364 |
|
---|
365 |
|
---|
366 | // merging of molecules
|
---|
367 | bool SimpleMerge(molecule *mol, molecule *srcmol);
|
---|
368 | bool SimpleAdd(molecule *mol, molecule *srcmol);
|
---|
369 | bool SimpleMultiMerge(molecule *mol, int *src, int N);
|
---|
370 | bool SimpleMultiAdd(molecule *mol, int *src, int N);
|
---|
371 | bool ScatterMerge(molecule *mol, int *src, int N);
|
---|
372 | bool EmbedMerge(molecule *mol, molecule *srcmol);
|
---|
373 |
|
---|
374 | private:
|
---|
375 | World *world; //!< The world this List belongs to. Needed to avoid deadlocks in the destructor
|
---|
376 | };
|
---|
377 |
|
---|
378 |
|
---|
379 | /** A leaf for a tree of \a molecule class
|
---|
380 | * Wraps molecules in a tree structure
|
---|
381 | */
|
---|
382 | class MoleculeLeafClass {
|
---|
383 | public:
|
---|
384 | molecule *Leaf; //!< molecule of this leaf
|
---|
385 | //MoleculeLeafClass *UpLeaf; //!< Leaf one level up
|
---|
386 | //MoleculeLeafClass *DownLeaf; //!< First leaf one level down
|
---|
387 | MoleculeLeafClass *previous; //!< Previous leaf on this level
|
---|
388 | MoleculeLeafClass *next; //!< Next leaf on this level
|
---|
389 |
|
---|
390 | //MoleculeLeafClass(MoleculeLeafClass *Up, MoleculeLeafClass *Previous);
|
---|
391 | MoleculeLeafClass(MoleculeLeafClass *PreviousLeaf);
|
---|
392 | ~MoleculeLeafClass();
|
---|
393 |
|
---|
394 | bool AddLeaf(molecule *ptr, MoleculeLeafClass *Previous);
|
---|
395 | bool FillBondStructureFromReference(const molecule * const reference, int &FragmentCounter, atom ***&ListOfLocalAtoms, bool FreeList = false);
|
---|
396 | bool FillRootStackForSubgraphs(KeyStack *&RootStack, bool *AtomMask, int &FragmentCounter);
|
---|
397 | bool AssignKeySetsToFragment(molecule *reference, Graph *KeySetList, atom ***&ListOfLocalAtoms, Graph **&FragmentList, int &FragmentCounter, bool FreeList = false);
|
---|
398 | bool FillListOfLocalAtoms(atom ***&ListOfLocalAtoms, const int FragmentCounter, const int GlobalAtomCount, bool &FreeList);
|
---|
399 | void TranslateIndicesToGlobalIDs(Graph **FragmentList, int &FragmentCounter, int &TotalNumberOfKeySets, Graph &TotalGraph);
|
---|
400 | int Count() const;
|
---|
401 | };
|
---|
402 |
|
---|
403 |
|
---|
404 | #endif /*MOLECULES_HPP_*/
|
---|
405 |
|
---|