source: src/World.hpp@ 7c4e29

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

Added a class that allows constructing Processes that have a result

  • Property mode set to 100644
File size: 3.3 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#include <string>
12#include <map>
13#include <vector>
14#include <set>
15#include <boost/thread.hpp>
16#include <boost/shared_ptr.hpp>
17
18
19#include "Patterns/Observer.hpp"
20#include "Patterns/Cacheable.hpp"
21
22// forward declarations
23class periodentafel;
24class MoleculeListClass;
25class atom;
26class molecule;
27class AtomDescriptor;
28class AtomDescriptor_impl;
29class ManipulateAtomsProcess;
30
31class World : public Observable
32{
33friend class AtomDescriptor_impl;
34friend class AtomDescriptor;
35
36friend class ManipulateAtomsProcess;
37
38typedef std::map<int,atom*> AtomList;
39public:
40
41 /***** getter and setter *****/
42 // reference to pointer is used for legacy reason... reference will be removed latter to keep encapsulation of World object
43 periodentafel *&getPeriode();
44 atom* getAtom(AtomDescriptor descriptor);
45 std::vector<atom*> getAllAtoms(AtomDescriptor descriptor);
46 int numAtoms();
47 int numMolecules();
48
49 /***** Methods to work with the World *****/
50 molecule *createMolecule();
51
52 ManipulateAtomsProcess* manipulateAtoms(boost::function<void(atom*)>,std::string,AtomDescriptor);
53
54protected:
55 /**** Iterators to use internal data structures */
56 class AtomIterator {
57 public:
58 AtomIterator();
59 AtomIterator(AtomDescriptor, World*);
60 AtomIterator(const AtomIterator&);
61 AtomIterator& operator=(const AtomIterator&);
62 AtomIterator& operator++(); // prefix
63 AtomIterator operator++(int); // postfix with dummy parameter
64 bool operator==(const AtomIterator&);
65 bool operator==(const AtomList::iterator&);
66 bool operator!=(const AtomIterator&);
67 bool operator!=(const AtomList::iterator&);
68 atom* operator*();
69
70 int getCount();
71 protected:
72 void advanceState();
73 World* world;
74 AtomList::iterator state;
75 boost::shared_ptr<AtomDescriptor_impl> descr;
76 int index;
77 };
78
79 AtomIterator getAtomIter(AtomDescriptor descr);
80 AtomList::iterator atomEnd();
81
82private:
83 periodentafel *periode;
84 AtomList atoms;
85 std::set<molecule*> molecules;
86
87
88 /***** singleton Stuff *****/
89public:
90 static World* get();
91 static void destroy();
92 static World* reset();
93
94private:
95 World();
96 virtual ~World();
97
98 static World *theWorld;
99 // this mutex only saves the singleton pattern...
100 // use other mutexes to protect internal data as well
101 // this mutex handles access to the pointer, not to the object!!!
102 static boost::mutex worldLock;
103
104 /*****
105 * some legacy stuff that is include for now but will be removed later
106 *****/
107public:
108 MoleculeListClass *&getMolecules();
109
110 // functions used for the WorldContent template mechanism
111 void registerAtom(atom *theAtom);
112 void unregisterAtom(atom *theAtom);
113private:
114 // this function cleans up anything that cannot be cleaned while the lock is active
115 // at a later point all these cleanups have to be moved to the World Class so the deadlock and
116 // race condition can both be avoided.
117 void destroyLegacy();
118
119 MoleculeListClass *molecules_deprecated;
120
121 // this is needed to assign unique IDs to atoms... so far
122 // IDs are not assigned upon Atom creation, so we cannot query the ID
123 // during construction. By using the dummy ID we can make sure all atoms
124 // are actually stored in the map and don't overwrite each other.
125 int dummyId;
126};
127
128#endif /* WORLD_HPP_ */
Note: See TracBrowser for help on using the repository browser.