source: src/World.cpp@ c27778

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

New SetOutputFormatsAction introduced.

Fixes:

new SetOutputFormatsAction:

  • new action SetOutputFormatsAction which instantiates various specializations of FormatParser in FormatParserStorage.
  • main(): mpqc, pcp and xyz and no more added by default to FormatParserStorage, this now has to be done by specifying them (e.g. on the command line as -o pcp mpqc xyz)
  • TESTFIXES: case 10,11,13,16,17,22 all failed due to the missing -o specification which has been added (this has been intended in this way from the very beginning of the ParseCommandLineOptions() refactoring)
  • action "convex-envelope" now more has ShortForm "-o" due to obvious reasons.
  • Property mode set to 100644
File size: 7.7 KB
Line 
1/*
2 * World.cpp
3 *
4 * Created on: Feb 3, 2010
5 * Author: crueger
6 */
7
8#include "Helpers/MemDebug.hpp"
9
10#include "World.hpp"
11
12#include "atom.hpp"
13#include "config.hpp"
14#include "molecule.hpp"
15#include "periodentafel.hpp"
16#include "ThermoStatContainer.hpp"
17#include "Descriptors/AtomDescriptor.hpp"
18#include "Descriptors/AtomDescriptor_impl.hpp"
19#include "Descriptors/MoleculeDescriptor.hpp"
20#include "Descriptors/MoleculeDescriptor_impl.hpp"
21#include "Descriptors/SelectiveIterator_impl.hpp"
22#include "Actions/ManipulateAtomsProcess.hpp"
23#include "Helpers/Assert.hpp"
24
25#include "Patterns/Singleton_impl.hpp"
26
27using namespace std;
28
29/******************************* getter and setter ************************/
30periodentafel *&World::getPeriode(){
31 return periode;
32}
33
34config *&World::getConfig(){
35 return configuration;
36}
37
38// Atoms
39
40atom* World::getAtom(AtomDescriptor descriptor){
41 return descriptor.find();
42}
43
44vector<atom*> World::getAllAtoms(AtomDescriptor descriptor){
45 return descriptor.findAll();
46}
47
48vector<atom*> World::getAllAtoms(){
49 return getAllAtoms(AllAtoms());
50}
51
52int World::numAtoms(){
53 return atoms.size();
54}
55
56// Molecules
57
58molecule *World::getMolecule(MoleculeDescriptor descriptor){
59 return descriptor.find();
60}
61
62std::vector<molecule*> World::getAllMolecules(MoleculeDescriptor descriptor){
63 return descriptor.findAll();
64}
65
66std::vector<molecule*> World::getAllMolecules(){
67 return getAllMolecules(AllMolecules());
68}
69
70int World::numMolecules(){
71 return molecules_deprecated->ListOfMolecules.size();
72}
73
74// system
75
76double * World::getDomain() {
77 return cell_size;
78}
79
80void World::setDomain(double * matrix)
81{
82 OBSERVE;
83 cell_size[0] = matrix[0];
84 cell_size[1] = matrix[1];
85 cell_size[2] = matrix[2];
86 cell_size[3] = matrix[3];
87 cell_size[4] = matrix[4];
88 cell_size[5] = matrix[5];
89}
90
91std::string World::getDefaultName() {
92 return defaultName;
93}
94
95void World::setDefaultName(std::string name)
96{
97 defaultName = name;
98};
99
100class ThermoStatContainer * World::getThermostats()
101{
102 return Thermostats;
103}
104
105
106int World::getExitFlag() {
107 return ExitFlag;
108}
109
110void World::setExitFlag(int flag) {
111 if (ExitFlag < flag)
112 ExitFlag = flag;
113}
114
115/******************** Methods to change World state *********************/
116
117molecule* World::createMolecule(){
118 OBSERVE;
119 molecule *mol = NULL;
120 mol = NewMolecule();
121 ASSERT(!molecules.count(currMoleculeId),"currMoleculeId did not specify an unused ID");
122 mol->setId(currMoleculeId++);
123 // store the molecule by ID
124 molecules[mol->getId()] = mol;
125 mol->signOn(this);
126 return mol;
127}
128
129void World::destroyMolecule(molecule* mol){
130 OBSERVE;
131 destroyMolecule(mol->getId());
132}
133
134void World::destroyMolecule(moleculeId_t id){
135 OBSERVE;
136 molecule *mol = molecules[id];
137 ASSERT(mol,"Molecule id that was meant to be destroyed did not exist");
138 DeleteMolecule(mol);
139 molecules.erase(id);
140}
141
142double *World::cell_size = NULL;
143
144atom *World::createAtom(){
145 OBSERVE;
146 atomId_t id = getNextAtomId();
147 atom *res = NewAtom(id);
148 res->setWorld(this);
149 // store the atom by ID
150 atoms[res->getId()] = res;
151 return res;
152}
153
154
155int World::registerAtom(atom *atom){
156 OBSERVE;
157 atomId_t id = getNextAtomId();
158 atom->setId(id);
159 atom->setWorld(this);
160 atoms[atom->getId()] = atom;
161 return atom->getId();
162}
163
164void World::destroyAtom(atom* atom){
165 OBSERVE;
166 int id = atom->getId();
167 destroyAtom(id);
168}
169
170void World::destroyAtom(atomId_t id) {
171 OBSERVE;
172 atom *atom = atoms[id];
173 ASSERT(atom,"Atom ID that was meant to be destroyed did not exist");
174 DeleteAtom(atom);
175 atoms.erase(id);
176 releaseAtomId(id);
177}
178
179bool World::changeAtomId(atomId_t oldId, atomId_t newId, atom* target){
180 OBSERVE;
181 // in case this call did not originate from inside the atom, we redirect it,
182 // to also let it know that it has changed
183 if(!target){
184 target = atoms[oldId];
185 ASSERT(target,"Atom with that ID not found");
186 return target->changeId(newId);
187 }
188 else{
189 if(reserveAtomId(newId)){
190 atoms.erase(oldId);
191 atoms.insert(pair<atomId_t,atom*>(newId,target));
192 return true;
193 }
194 else{
195 return false;
196 }
197 }
198}
199
200ManipulateAtomsProcess* World::manipulateAtoms(boost::function<void(atom*)> op,std::string name,AtomDescriptor descr){
201 return new ManipulateAtomsProcess(op, descr,name,true);
202}
203
204ManipulateAtomsProcess* World::manipulateAtoms(boost::function<void(atom*)> op,std::string name){
205 return manipulateAtoms(op,name,AllAtoms());
206}
207
208/********************* Internal Change methods for double Callback and Observer mechanism ********/
209
210void World::doManipulate(ManipulateAtomsProcess *proc){
211 proc->signOn(this);
212 {
213 OBSERVE;
214 proc->doManipulate(this);
215 }
216 proc->signOff(this);
217}
218/******************************* IDManagement *****************************/
219
220// Atoms
221
222atomId_t World::getNextAtomId(){
223 // see if we can reuse some Id
224 if(atomIdPool.empty()){
225 return currAtomId++;
226 }
227 else{
228 // we give out the first ID from the pool
229 atomId_t id = *(atomIdPool.begin());
230 atomIdPool.erase(id);
231 return id;
232 }
233}
234
235void World::releaseAtomId(atomId_t id){
236 atomIdPool.insert(id);
237 // defragmentation of the pool
238 set<atomId_t>::reverse_iterator iter;
239 // go through all Ids in the pool that lie immediately below the border
240 while(!atomIdPool.empty() && *(atomIdPool.rbegin())==(currAtomId-1)){
241 atomIdPool.erase(--currAtomId);
242 }
243}
244
245bool World::reserveAtomId(atomId_t id){
246 if(id>=currAtomId ){
247 // add all ids between the new one and current border as available
248 for(atomId_t pos=currAtomId; pos<id; ++pos){
249 atomIdPool.insert(pos);
250 }
251 currAtomId=id+1;
252 return true;
253 }
254 else if(atomIdPool.count(id)){
255 atomIdPool.erase(id);
256 return true;
257 }
258 else{
259 // this ID could not be reserved
260 return false;
261 }
262}
263
264// Molecules
265
266/******************************* Iterators ********************************/
267
268// Build the AtomIterator from template
269CONSTRUCT_SELECTIVE_ITERATOR(atom*,World::AtomSet,AtomDescriptor);
270
271
272World::AtomIterator World::getAtomIter(AtomDescriptor descr){
273 return AtomIterator(descr,atoms);
274}
275
276World::AtomIterator World::atomEnd(){
277 return AtomIterator(AllAtoms(),atoms,atoms.end());
278}
279
280// build the MoleculeIterator from template
281CONSTRUCT_SELECTIVE_ITERATOR(molecule*,World::MoleculeSet,MoleculeDescriptor);
282
283World::MoleculeIterator World::getMoleculeIter(MoleculeDescriptor descr){
284 return MoleculeIterator(descr,molecules);
285}
286
287World::MoleculeIterator World::moleculeEnd(){
288 return MoleculeIterator(AllMolecules(),molecules,molecules.end());
289}
290
291/******************************* Singleton Stuff **************************/
292
293World::World() :
294 Observable("World"),
295 periode(new periodentafel),
296 configuration(new config),
297 Thermostats(new ThermoStatContainer),
298 ExitFlag(0),
299 atoms(),
300 currAtomId(0),
301 molecules(),
302 currMoleculeId(0),
303 molecules_deprecated(new MoleculeListClass(this))
304{
305 cell_size = new double[6];
306 cell_size[0] = 20.;
307 cell_size[1] = 0.;
308 cell_size[2] = 20.;
309 cell_size[3] = 0.;
310 cell_size[4] = 0.;
311 cell_size[5] = 20.;
312 defaultName = "none";
313 molecules_deprecated->signOn(this);
314}
315
316World::~World()
317{
318 molecules_deprecated->signOff(this);
319 delete[] cell_size;
320 delete molecules_deprecated;
321 delete periode;
322 delete configuration;
323 delete Thermostats;
324 MoleculeSet::iterator molIter;
325 for(molIter=molecules.begin();molIter!=molecules.end();++molIter){
326 DeleteMolecule((*molIter).second);
327 }
328 molecules.clear();
329 AtomSet::iterator atIter;
330 for(atIter=atoms.begin();atIter!=atoms.end();++atIter){
331 DeleteAtom((*atIter).second);
332 }
333 atoms.clear();
334}
335
336// Explicit instantiation of the singleton mechanism at this point
337
338CONSTRUCT_SINGLETON(World)
339
340/******************************* deprecated Legacy Stuff ***********************/
341
342MoleculeListClass *&World::getMolecules() {
343 return molecules_deprecated;
344}
Note: See TracBrowser for help on using the repository browser.