source: src/World.hpp@ 533838

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 533838 was 533838, checked in by Frederik Heber <heber@…>, 14 years ago

Merge branch 'SelectionActions' into SplitDialogFromAction_performCall

Conflicts:

src/World.cpp
src/World.hpp

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