source: src/World.hpp@ dc11c9

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 dc11c9 was dc11c9, checked in by Tillmann Crueger <crueger@…>, 14 years ago

Made the id-pools in the World use range objects

  • Property mode set to 100644
File size: 12.2 KB
Line 
1/*
2 * World.hpp
3 *
4 * Created on: Feb 3, 2010
5 * Author: crueger
6 */
7
8#ifndef WORLD_HPP_
9#define WORLD_HPP_
10
11/*********************************************** includes ***********************************/
12
13#include <string>
14#include <map>
15#include <vector>
16#include <set>
17#include <boost/thread.hpp>
18#include <boost/shared_ptr.hpp>
19
20#include "types.hpp"
21#include "Descriptors/SelectiveIterator.hpp"
22#include "Patterns/Observer.hpp"
23#include "Patterns/Cacheable.hpp"
24#include "Patterns/Singleton.hpp"
25#include "Patterns/ObservedContainer.hpp"
26#include "Helpers/Range.hpp"
27
28// include config.h
29#ifdef HAVE_CONFIG_H
30#include <config.h>
31#endif
32
33// forward declarations
34class atom;
35class AtomDescriptor;
36class AtomDescriptor_impl;
37template<typename T> class AtomsCalculation;
38class Box;
39class config;
40class ManipulateAtomsProcess;
41class Matrix;
42class molecule;
43class MoleculeDescriptor;
44class MoleculeDescriptor_impl;
45class MoleculeListClass;
46class periodentafel;
47class ThermoStatContainer;
48
49
50/****************************************** forward declarations *****************************/
51
52/********************************************** Class World *******************************/
53
54class World : public Singleton<World>, public Observable
55{
56
57// Make access to constructor and destructor possible from inside the singleton
58friend class Singleton<World>;
59
60// necessary for coupling with descriptors
61friend class AtomDescriptor_impl;
62friend class AtomDescriptor;
63friend class MoleculeDescriptor_impl;
64friend class MoleculeDescriptor;
65// coupling with descriptors over selection
66friend class AtomSelectionDescriptor_impl;
67friend class MoleculeSelectionDescriptor_impl;
68
69// Actions, calculations etc associated with the World
70friend class ManipulateAtomsProcess;
71template<typename> friend class AtomsCalculation;
72public:
73
74 // Types for Atom and Molecule structures
75 typedef ObservedContainer<std::map<atomId_t,atom*> > AtomSet;
76 typedef ObservedContainer<std::map<moleculeId_t,molecule*> > MoleculeSet;
77
78 /***** getter and setter *****/
79 // reference to pointer is used for legacy reason... reference will be removed latter to keep encapsulation of World object
80 /**
81 * returns the periodentafel for the world.
82 */
83 periodentafel *&getPeriode();
84
85 /**
86 * returns the configuration for the world.
87 */
88 config *&getConfig();
89
90 /**
91 * returns the first atom that matches a given descriptor.
92 * Do not rely on ordering for descriptors that match more than one atom.
93 */
94 atom* getAtom(AtomDescriptor descriptor);
95
96 /**
97 * returns a vector containing all atoms that match a given descriptor
98 */
99 std::vector<atom*> getAllAtoms(AtomDescriptor descriptor);
100 std::vector<atom*> getAllAtoms();
101
102 /**
103 * returns a calculation that calls a given function on all atoms matching a descriptor.
104 * the calculation is not called at this point and can be used as an action, i.e. be stored in
105 * menus, be kept around for later use etc.
106 */
107 template<typename T> AtomsCalculation<T>* calcOnAtoms(boost::function<T(atom*)>,std::string,AtomDescriptor);
108 template<typename T> AtomsCalculation<T>* calcOnAtoms(boost::function<T(atom*)>,std::string);
109
110 /**
111 * get the number of atoms in the World
112 */
113 int numAtoms();
114
115 /**
116 * returns the first molecule that matches a given descriptor.
117 * Do not rely on ordering for descriptors that match more than one molecule.
118 */
119 molecule *getMolecule(MoleculeDescriptor descriptor);
120
121 /**
122 * returns a vector containing all molecules that match a given descriptor
123 */
124 std::vector<molecule*> getAllMolecules(MoleculeDescriptor descriptor);
125 std::vector<molecule*> getAllMolecules();
126
127 /**
128 * get the number of molecules in the World
129 */
130 int numMolecules();
131
132 /**
133 * get the domain size as a symmetric matrix (6 components)
134 */
135 Box& getDomain();
136
137 /**
138 * Set the domain size from a matrix object
139 *
140 * Matrix needs to be symmetric
141 */
142 void setDomain(const Matrix &mat);
143
144 /**
145 * set the domain size as a symmetric matrix (6 components)
146 */
147 void setDomain(double * matrix);
148
149 /**
150 * get the default name
151 */
152 std::string getDefaultName();
153
154 /**
155 * set the default name
156 */
157 void setDefaultName(std::string name);
158
159 /**
160 * get pointer to World's ThermoStatContainer
161 */
162 ThermoStatContainer * getThermostats();
163
164 /*
165 * get the ExitFlag
166 */
167 int getExitFlag();
168
169 /*
170 * set the ExitFlag
171 */
172 void setExitFlag(int flag);
173
174 /***** Methods to work with the World *****/
175
176 /**
177 * create a new molecule. This method should be used whenever any kind of molecule is needed. Assigns a unique
178 * ID to the molecule and stores it in the World for later retrieval. Do not create molecules directly.
179 */
180 molecule *createMolecule();
181
182 void destroyMolecule(molecule*);
183 void destroyMolecule(moleculeId_t);
184
185 /**
186 * Create a new atom. This method should be used whenever any atom is needed. Assigns a unique ID and stores
187 * the atom in the World. If the atom is not destroyed it will automatically be destroyed when the world ends.
188 */
189 atom *createAtom();
190
191 /**
192 * Registers a Atom unknown to world. Needed in some rare cases, e.g. when cloning atoms, or in some unittests.
193 * Do not re-register Atoms already known to the world since this will cause double-frees.
194 */
195 int registerAtom(atom*);
196
197 /**
198 * Delete some atom and erase it from the world. Use this whenever you need to destroy any atom. Do not call delete on
199 * atom directly since this will leave the pointer inside the world.
200 */
201 void destroyAtom(atom*);
202
203 /**
204 * Delete some atom and erase it from the world. Use this whenever you need to destroy any atom. Do not call delete on
205 * atom directly since this will leave the pointer inside the world.
206 */
207 void destroyAtom(atomId_t);
208
209 /**
210 * used when changing an atom Id.
211 * Unless you are calling this method from inside an atom don't fiddle with the third parameter.
212 *
213 * Return value indicates wether the change could be done or not.
214 */
215 bool changeAtomId(atomId_t oldId, atomId_t newId, atom* target=0);
216
217 /**
218 * Produces a process that calls a function on all Atoms matching a given descriptor. The process is not
219 * called at this time, so it can be passed around, stored inside menuItems etc.
220 */
221 ManipulateAtomsProcess* manipulateAtoms(boost::function<void(atom*)>,std::string,AtomDescriptor);
222 ManipulateAtomsProcess* manipulateAtoms(boost::function<void(atom*)>,std::string);
223
224 /****
225 * Iterators to use internal data structures
226 * All these iterators are observed to track changes.
227 * There is a corresponding protected section with unobserved iterators,
228 * which can be used internally when the extra speed is needed
229 */
230
231 typedef SelectiveIterator<atom*,AtomSet,AtomDescriptor> AtomIterator;
232
233 /**
234 * returns an iterator over all Atoms matching a given descriptor.
235 * This iterator is observed, so don't keep it around unnecessary to
236 * avoid unintended blocking.
237 */
238 AtomIterator getAtomIter(AtomDescriptor descr);
239 AtomIterator getAtomIter();
240
241 AtomIterator atomEnd();
242
243 typedef SelectiveIterator<molecule*,MoleculeSet,MoleculeDescriptor> MoleculeIterator;
244
245 /**
246 * returns an iterator over all Molecules matching a given descriptor.
247 * This iterator is observed, so don't keep it around unnecessary to
248 * avoid unintended blocking.
249 */
250 MoleculeIterator getMoleculeIter(MoleculeDescriptor descr);
251 MoleculeIterator getMoleculeIter();
252
253 MoleculeIterator moleculeEnd();
254
255 /******** Selections of molecules and Atoms *************/
256 void clearAtomSelection();
257 void selectAtom(atom*);
258 void selectAtom(atomId_t);
259 void selectAllAtoms(AtomDescriptor);
260 void selectAtomsOfMolecule(molecule*);
261 void selectAtomsOfMolecule(moleculeId_t);
262 void unselectAtom(atom*);
263 void unselectAtom(atomId_t);
264 void unselectAllAtoms(AtomDescriptor);
265 void unselectAtomsOfMolecule(molecule*);
266 void unselectAtomsOfMolecule(moleculeId_t);
267
268 void clearMoleculeSelection();
269 void selectMolecule(molecule*);
270 void selectMolecule(moleculeId_t);
271 void selectAllMoleculess(MoleculeDescriptor);
272 void selectMoleculeOfAtom(atom*);
273 void selectMoleculeOfAtom(atomId_t);
274 void unselectMolecule(molecule*);
275 void unselectMolecule(moleculeId_t);
276 void unselectAllMoleculess(MoleculeDescriptor);
277 void unselectMoleculeOfAtom(atom*);
278 void unselectMoleculeOfAtom(atomId_t);
279
280 /******************** Iterators to selections *****************/
281 typedef AtomSet::iterator AtomSelectionIterator;
282 AtomSelectionIterator beginAtomSelection();
283 AtomSelectionIterator endAtomSelection();
284
285 typedef MoleculeSet::iterator MoleculeSelectionIterator;
286 MoleculeSelectionIterator beginMoleculeSelection();
287 MoleculeSelectionIterator endMoleculeSelection();
288
289protected:
290 /****
291 * Iterators to use internal data structures
292 * All these iterators are unobserved for speed reasons.
293 * There is a corresponding public section to these methods,
294 * which produce observed iterators.*/
295
296 // Atoms
297 typedef SelectiveIterator<atom*,AtomSet::set_t,AtomDescriptor> internal_AtomIterator;
298
299 /**
300 * returns an iterator over all Atoms matching a given descriptor.
301 * used for internal purposes, like AtomProcesses and AtomCalculations.
302 */
303 internal_AtomIterator getAtomIter_internal(AtomDescriptor descr);
304
305 /**
306 * returns an iterator to the end of the AtomSet. Due to overloading this iterator
307 * can be compared to iterators produced by getAtomIter (see the mis-matching types).
308 * Thus it can be used to detect when such an iterator is at the end of the list.
309 * used for internal purposes, like AtomProcesses and AtomCalculations.
310 */
311 internal_AtomIterator atomEnd_internal();
312
313 // Molecules
314 typedef SelectiveIterator<molecule*,MoleculeSet::set_t,MoleculeDescriptor> internal_MoleculeIterator;
315
316
317 /**
318 * returns an iterator over all Molecules matching a given descriptor.
319 * used for internal purposes, like MoleculeProcesses and MoleculeCalculations.
320 */
321 internal_MoleculeIterator getMoleculeIter_internal(MoleculeDescriptor descr);
322
323 /**
324 * returns an iterator to the end of the MoleculeSet. Due to overloading this iterator
325 * can be compared to iterators produced by getMoleculeIter (see the mis-matching types).
326 * Thus it can be used to detect when such an iterator is at the end of the list.
327 * used for internal purposes, like MoleculeProcesses and MoleculeCalculations.
328 */
329 internal_MoleculeIterator moleculeEnd_internal();
330
331
332 /******* Internal manipulation routines for double callback and Observer mechanism ******/
333 void doManipulate(ManipulateAtomsProcess *);
334
335private:
336
337 atomId_t getNextAtomId();
338 void releaseAtomId(atomId_t);
339 bool reserveAtomId(atomId_t);
340 void defragAtomIdPool();
341
342 moleculeId_t getNextMoleculeId();
343 void releaseMoleculeId(moleculeId_t);
344 bool reserveMoleculeId(moleculeId_t);
345 void defragMoleculeIdPool();
346
347 periodentafel *periode;
348 config *configuration;
349 Box *cell_size;
350 std::string defaultName;
351 class ThermoStatContainer *Thermostats;
352 int ExitFlag;
353private:
354
355 AtomSet atoms;
356 AtomSet selectedAtoms;
357 typedef std::set<range<atomId_t> > atomIdPool_t;
358 /**
359 * stores the pool for all available AtomIds below currAtomId
360 *
361 * The pool contains ranges of free ids in the form [bottom,top).
362 */
363 atomIdPool_t atomIdPool;
364 atomId_t currAtomId; //!< stores the next available Id for atoms
365 size_t lastAtomPoolSize; //!< size of the pool after last defrag, to skip some defrags
366 unsigned int numAtomDefragSkips;
367
368 MoleculeSet molecules;
369 MoleculeSet selectedMolecules;
370 typedef std::set<range<atomId_t> > moleculeIdPool_t;
371 /**
372 * stores the pool for all available AtomIds below currAtomId
373 *
374 * The pool contains ranges of free ids in the form [bottom,top).
375 */
376 moleculeIdPool_t moleculeIdPool;
377 moleculeId_t currMoleculeId;
378 size_t lastMoleculePoolSize; //!< size of the pool after last defrag, to skip some defrags
379 unsigned int numMoleculeDefragSkips;
380private:
381 /**
382 * private constructor to ensure creation of the world using
383 * the singleton pattern.
384 */
385 World();
386
387 /**
388 * private destructor to ensure destruction of the world using the
389 * singleton pattern.
390 */
391 virtual ~World();
392
393 /*****
394 * some legacy stuff that is include for now but will be removed later
395 *****/
396public:
397 MoleculeListClass *&getMolecules();
398
399private:
400 MoleculeListClass *molecules_deprecated;
401};
402
403#endif /* WORLD_HPP_ */
Note: See TracBrowser for help on using the repository browser.