[5d1611] | 1 | /*
|
---|
| 2 | * World.cpp
|
---|
| 3 | *
|
---|
| 4 | * Created on: Feb 3, 2010
|
---|
| 5 | * Author: crueger
|
---|
| 6 | */
|
---|
| 7 |
|
---|
[bf3817] | 8 | // include config.h
|
---|
| 9 | #ifdef HAVE_CONFIG_H
|
---|
| 10 | #include <config.h>
|
---|
| 11 | #endif
|
---|
| 12 |
|
---|
[112b09] | 13 | #include "Helpers/MemDebug.hpp"
|
---|
| 14 |
|
---|
[5d1611] | 15 | #include "World.hpp"
|
---|
| 16 |
|
---|
[90c4280] | 17 | #include <functional>
|
---|
[5d1611] | 18 |
|
---|
[d346b6] | 19 | #include "atom.hpp"
|
---|
[8e1f7af] | 20 | #include "config.hpp"
|
---|
[354859] | 21 | #include "molecule.hpp"
|
---|
| 22 | #include "periodentafel.hpp"
|
---|
[43dad6] | 23 | #include "ThermoStatContainer.hpp"
|
---|
[fc1b24] | 24 | #include "Descriptors/AtomDescriptor.hpp"
|
---|
[865a945] | 25 | #include "Descriptors/AtomDescriptor_impl.hpp"
|
---|
[1c51c8] | 26 | #include "Descriptors/MoleculeDescriptor.hpp"
|
---|
| 27 | #include "Descriptors/MoleculeDescriptor_impl.hpp"
|
---|
[6e97e5] | 28 | #include "Descriptors/SelectiveIterator_impl.hpp"
|
---|
[7c4e29] | 29 | #include "Actions/ManipulateAtomsProcess.hpp"
|
---|
[6d574a] | 30 | #include "Helpers/Assert.hpp"
|
---|
[84c494] | 31 | #include "Box.hpp"
|
---|
[57f243] | 32 | #include "LinearAlgebra/Matrix.hpp"
|
---|
[127a8e] | 33 | #include "defs.hpp"
|
---|
[d346b6] | 34 |
|
---|
[23b547] | 35 | #include "Patterns/Singleton_impl.hpp"
|
---|
[90c4280] | 36 | #include "Patterns/ObservedContainer_impl.hpp"
|
---|
[23b547] | 37 |
|
---|
[d346b6] | 38 | using namespace std;
|
---|
[4d9c01] | 39 |
|
---|
[11e206] | 40 | const unsigned int MAX_POOL_FRAGMENTATION=20;
|
---|
| 41 | const unsigned int MAX_FRAGMENTATION_SKIPS=100;
|
---|
| 42 |
|
---|
[5d1611] | 43 | /******************************* getter and setter ************************/
|
---|
[354859] | 44 | periodentafel *&World::getPeriode(){
|
---|
[5d1611] | 45 | return periode;
|
---|
| 46 | }
|
---|
| 47 |
|
---|
[8e1f7af] | 48 | config *&World::getConfig(){
|
---|
| 49 | return configuration;
|
---|
| 50 | }
|
---|
| 51 |
|
---|
[1c51c8] | 52 | // Atoms
|
---|
| 53 |
|
---|
[7a1ce5] | 54 | atom* World::getAtom(AtomDescriptor descriptor){
|
---|
[fc1b24] | 55 | return descriptor.find();
|
---|
| 56 | }
|
---|
| 57 |
|
---|
[4d72e4] | 58 | World::AtomComposite World::getAllAtoms(AtomDescriptor descriptor){
|
---|
[fc1b24] | 59 | return descriptor.findAll();
|
---|
| 60 | }
|
---|
| 61 |
|
---|
[4d72e4] | 62 | World::AtomComposite World::getAllAtoms(){
|
---|
[0e2a47] | 63 | return getAllAtoms(AllAtoms());
|
---|
| 64 | }
|
---|
| 65 |
|
---|
[354859] | 66 | int World::numAtoms(){
|
---|
| 67 | return atoms.size();
|
---|
| 68 | }
|
---|
| 69 |
|
---|
[1c51c8] | 70 | // Molecules
|
---|
| 71 |
|
---|
| 72 | molecule *World::getMolecule(MoleculeDescriptor descriptor){
|
---|
| 73 | return descriptor.find();
|
---|
| 74 | }
|
---|
| 75 |
|
---|
| 76 | std::vector<molecule*> World::getAllMolecules(MoleculeDescriptor descriptor){
|
---|
| 77 | return descriptor.findAll();
|
---|
| 78 | }
|
---|
| 79 |
|
---|
[97ebf8] | 80 | std::vector<molecule*> World::getAllMolecules(){
|
---|
| 81 | return getAllMolecules(AllMolecules());
|
---|
| 82 | }
|
---|
| 83 |
|
---|
[354859] | 84 | int World::numMolecules(){
|
---|
| 85 | return molecules_deprecated->ListOfMolecules.size();
|
---|
| 86 | }
|
---|
| 87 |
|
---|
[5f612ee] | 88 | // system
|
---|
| 89 |
|
---|
[84c494] | 90 | Box& World::getDomain() {
|
---|
| 91 | return *cell_size;
|
---|
| 92 | }
|
---|
| 93 |
|
---|
| 94 | void World::setDomain(const Matrix &mat){
|
---|
[be97a8] | 95 | OBSERVE;
|
---|
[84c494] | 96 | *cell_size = mat;
|
---|
[5f612ee] | 97 | }
|
---|
| 98 |
|
---|
| 99 | void World::setDomain(double * matrix)
|
---|
| 100 | {
|
---|
[b9c847] | 101 | OBSERVE;
|
---|
[84c494] | 102 | Matrix M = ReturnFullMatrixforSymmetric(matrix);
|
---|
| 103 | cell_size->setM(M);
|
---|
[5f612ee] | 104 | }
|
---|
| 105 |
|
---|
[387b36] | 106 | std::string World::getDefaultName() {
|
---|
[5f612ee] | 107 | return defaultName;
|
---|
| 108 | }
|
---|
| 109 |
|
---|
[387b36] | 110 | void World::setDefaultName(std::string name)
|
---|
[5f612ee] | 111 | {
|
---|
[be97a8] | 112 | OBSERVE;
|
---|
[387b36] | 113 | defaultName = name;
|
---|
[5f612ee] | 114 | };
|
---|
| 115 |
|
---|
[43dad6] | 116 | class ThermoStatContainer * World::getThermostats()
|
---|
| 117 | {
|
---|
| 118 | return Thermostats;
|
---|
| 119 | }
|
---|
| 120 |
|
---|
| 121 |
|
---|
[e4b5de] | 122 | int World::getExitFlag() {
|
---|
| 123 | return ExitFlag;
|
---|
| 124 | }
|
---|
| 125 |
|
---|
| 126 | void World::setExitFlag(int flag) {
|
---|
| 127 | if (ExitFlag < flag)
|
---|
| 128 | ExitFlag = flag;
|
---|
| 129 | }
|
---|
[5f612ee] | 130 |
|
---|
[afb47f] | 131 | /******************** Methods to change World state *********************/
|
---|
| 132 |
|
---|
[354859] | 133 | molecule* World::createMolecule(){
|
---|
| 134 | OBSERVE;
|
---|
| 135 | molecule *mol = NULL;
|
---|
[cbc5fb] | 136 | mol = NewMolecule();
|
---|
[127a8e] | 137 | moleculeId_t id = getNextMoleculeId();
|
---|
| 138 | ASSERT(!molecules.count(id),"proposed id did not specify an unused ID");
|
---|
| 139 | mol->setId(id);
|
---|
[244d26] | 140 | // store the molecule by ID
|
---|
[cbc5fb] | 141 | molecules[mol->getId()] = mol;
|
---|
[354859] | 142 | mol->signOn(this);
|
---|
| 143 | return mol;
|
---|
| 144 | }
|
---|
| 145 |
|
---|
[cbc5fb] | 146 | void World::destroyMolecule(molecule* mol){
|
---|
| 147 | OBSERVE;
|
---|
[fa7989] | 148 | ASSERT(mol,"Molecule that was meant to be destroyed did not exist");
|
---|
[cbc5fb] | 149 | destroyMolecule(mol->getId());
|
---|
| 150 | }
|
---|
| 151 |
|
---|
| 152 | void World::destroyMolecule(moleculeId_t id){
|
---|
| 153 | OBSERVE;
|
---|
| 154 | molecule *mol = molecules[id];
|
---|
[6d574a] | 155 | ASSERT(mol,"Molecule id that was meant to be destroyed did not exist");
|
---|
[cbc5fb] | 156 | DeleteMolecule(mol);
|
---|
| 157 | molecules.erase(id);
|
---|
[127a8e] | 158 | releaseMoleculeId(id);
|
---|
[cbc5fb] | 159 | }
|
---|
| 160 |
|
---|
[46d958] | 161 | atom *World::createAtom(){
|
---|
| 162 | OBSERVE;
|
---|
[88d586] | 163 | atomId_t id = getNextAtomId();
|
---|
[127a8e] | 164 | ASSERT(!atoms.count(id),"proposed id did not specify an unused ID");
|
---|
[88d586] | 165 | atom *res = NewAtom(id);
|
---|
[46d958] | 166 | res->setWorld(this);
|
---|
[244d26] | 167 | // store the atom by ID
|
---|
[46d958] | 168 | atoms[res->getId()] = res;
|
---|
| 169 | return res;
|
---|
| 170 | }
|
---|
| 171 |
|
---|
[5f612ee] | 172 |
|
---|
[46d958] | 173 | int World::registerAtom(atom *atom){
|
---|
| 174 | OBSERVE;
|
---|
[88d586] | 175 | atomId_t id = getNextAtomId();
|
---|
| 176 | atom->setId(id);
|
---|
[46d958] | 177 | atom->setWorld(this);
|
---|
| 178 | atoms[atom->getId()] = atom;
|
---|
| 179 | return atom->getId();
|
---|
| 180 | }
|
---|
| 181 |
|
---|
| 182 | void World::destroyAtom(atom* atom){
|
---|
| 183 | OBSERVE;
|
---|
| 184 | int id = atom->getId();
|
---|
| 185 | destroyAtom(id);
|
---|
| 186 | }
|
---|
| 187 |
|
---|
[cbc5fb] | 188 | void World::destroyAtom(atomId_t id) {
|
---|
[46d958] | 189 | OBSERVE;
|
---|
| 190 | atom *atom = atoms[id];
|
---|
[6d574a] | 191 | ASSERT(atom,"Atom ID that was meant to be destroyed did not exist");
|
---|
[46d958] | 192 | DeleteAtom(atom);
|
---|
| 193 | atoms.erase(id);
|
---|
[88d586] | 194 | releaseAtomId(id);
|
---|
| 195 | }
|
---|
| 196 |
|
---|
| 197 | bool World::changeAtomId(atomId_t oldId, atomId_t newId, atom* target){
|
---|
| 198 | OBSERVE;
|
---|
| 199 | // in case this call did not originate from inside the atom, we redirect it,
|
---|
| 200 | // to also let it know that it has changed
|
---|
| 201 | if(!target){
|
---|
| 202 | target = atoms[oldId];
|
---|
[6d574a] | 203 | ASSERT(target,"Atom with that ID not found");
|
---|
[88d586] | 204 | return target->changeId(newId);
|
---|
| 205 | }
|
---|
| 206 | else{
|
---|
| 207 | if(reserveAtomId(newId)){
|
---|
| 208 | atoms.erase(oldId);
|
---|
| 209 | atoms.insert(pair<atomId_t,atom*>(newId,target));
|
---|
| 210 | return true;
|
---|
| 211 | }
|
---|
| 212 | else{
|
---|
| 213 | return false;
|
---|
| 214 | }
|
---|
| 215 | }
|
---|
[46d958] | 216 | }
|
---|
| 217 |
|
---|
[a7a087] | 218 | bool World::changeMoleculeId(moleculeId_t oldId, moleculeId_t newId, molecule* target){
|
---|
| 219 | OBSERVE;
|
---|
| 220 | // in case this call did not originate from inside the atom, we redirect it,
|
---|
| 221 | // to also let it know that it has changed
|
---|
| 222 | if(!target){
|
---|
| 223 | target = molecules[oldId];
|
---|
| 224 | ASSERT(target,"Molecule with that ID not found");
|
---|
| 225 | return target->changeId(newId);
|
---|
| 226 | }
|
---|
| 227 | else{
|
---|
| 228 | if(reserveMoleculeId(newId)){
|
---|
| 229 | molecules.erase(oldId);
|
---|
| 230 | molecules.insert(pair<moleculeId_t,molecule*>(newId,target));
|
---|
| 231 | return true;
|
---|
| 232 | }
|
---|
| 233 | else{
|
---|
| 234 | return false;
|
---|
| 235 | }
|
---|
| 236 | }
|
---|
| 237 | }
|
---|
| 238 |
|
---|
[7c4e29] | 239 | ManipulateAtomsProcess* World::manipulateAtoms(boost::function<void(atom*)> op,std::string name,AtomDescriptor descr){
|
---|
| 240 | return new ManipulateAtomsProcess(op, descr,name,true);
|
---|
| 241 | }
|
---|
| 242 |
|
---|
[0e2a47] | 243 | ManipulateAtomsProcess* World::manipulateAtoms(boost::function<void(atom*)> op,std::string name){
|
---|
| 244 | return manipulateAtoms(op,name,AllAtoms());
|
---|
| 245 | }
|
---|
| 246 |
|
---|
[afb47f] | 247 | /********************* Internal Change methods for double Callback and Observer mechanism ********/
|
---|
| 248 |
|
---|
| 249 | void World::doManipulate(ManipulateAtomsProcess *proc){
|
---|
| 250 | proc->signOn(this);
|
---|
| 251 | {
|
---|
| 252 | OBSERVE;
|
---|
| 253 | proc->doManipulate(this);
|
---|
| 254 | }
|
---|
| 255 | proc->signOff(this);
|
---|
| 256 | }
|
---|
[88d586] | 257 | /******************************* IDManagement *****************************/
|
---|
| 258 |
|
---|
[57adc7] | 259 | // Atoms
|
---|
| 260 |
|
---|
[88d586] | 261 | atomId_t World::getNextAtomId(){
|
---|
[127a8e] | 262 | // try to find an Id in the pool;
|
---|
| 263 | if(!atomIdPool.empty()){
|
---|
| 264 | atomIdPool_t::iterator iter=atomIdPool.begin();
|
---|
| 265 | atomId_t id = iter->first;
|
---|
[dc11c9] | 266 | range<atomId_t> newRange = makeRange(id+1,iter->last);
|
---|
[127a8e] | 267 | // we wont use this iterator anymore, so we don't care about invalidating
|
---|
| 268 | atomIdPool.erase(iter);
|
---|
[dc11c9] | 269 | if(newRange.first<newRange.last){
|
---|
[127a8e] | 270 | atomIdPool.insert(newRange);
|
---|
| 271 | }
|
---|
[23b547] | 272 | return id;
|
---|
[88d586] | 273 | }
|
---|
[127a8e] | 274 | // Nothing in the pool... we are out of luck
|
---|
| 275 | return currAtomId++;
|
---|
[88d586] | 276 | }
|
---|
| 277 |
|
---|
| 278 | void World::releaseAtomId(atomId_t id){
|
---|
[dc11c9] | 279 | atomIdPool.insert(makeRange(id,id+1));
|
---|
[127a8e] | 280 | defragAtomIdPool();
|
---|
[88d586] | 281 | }
|
---|
[afb47f] | 282 |
|
---|
[88d586] | 283 | bool World::reserveAtomId(atomId_t id){
|
---|
| 284 | if(id>=currAtomId ){
|
---|
[dc11c9] | 285 | range<atomId_t> newRange = makeRange(currAtomId,id);
|
---|
| 286 | if(newRange.first<newRange.last){
|
---|
[127a8e] | 287 | atomIdPool.insert(newRange);
|
---|
[88d586] | 288 | }
|
---|
| 289 | currAtomId=id+1;
|
---|
[127a8e] | 290 | defragAtomIdPool();
|
---|
[88d586] | 291 | return true;
|
---|
| 292 | }
|
---|
[127a8e] | 293 | // look for a range that matches the request
|
---|
| 294 | for(atomIdPool_t::iterator iter=atomIdPool.begin();iter!=atomIdPool.end();++iter){
|
---|
[dc11c9] | 295 | if(iter->isBefore(id)){
|
---|
| 296 | // we have covered all available ranges... nothing to be found here
|
---|
[127a8e] | 297 | break;
|
---|
| 298 | }
|
---|
| 299 | // no need to check first, since it has to be <=id, since otherwise we would have broken out
|
---|
[dc11c9] | 300 | if(!iter->isBeyond(id)){
|
---|
[127a8e] | 301 | // we found a matching range... get the id from this range
|
---|
| 302 |
|
---|
| 303 | // split up this range at the point of id
|
---|
[dc11c9] | 304 | range<atomId_t> bottomRange = makeRange(iter->first,id);
|
---|
| 305 | range<atomId_t> topRange = makeRange(id+1,iter->last);
|
---|
[127a8e] | 306 | // remove this range
|
---|
| 307 | atomIdPool.erase(iter);
|
---|
[dc11c9] | 308 | if(bottomRange.first<bottomRange.last){
|
---|
[127a8e] | 309 | atomIdPool.insert(bottomRange);
|
---|
| 310 | }
|
---|
[dc11c9] | 311 | if(topRange.first<topRange.last){
|
---|
[127a8e] | 312 | atomIdPool.insert(topRange);
|
---|
| 313 | }
|
---|
| 314 | defragAtomIdPool();
|
---|
| 315 | return true;
|
---|
| 316 | }
|
---|
[88d586] | 317 | }
|
---|
[127a8e] | 318 | // this ID could not be reserved
|
---|
| 319 | return false;
|
---|
| 320 | }
|
---|
| 321 |
|
---|
| 322 | void World::defragAtomIdPool(){
|
---|
| 323 | // check if the situation is bad enough to make defragging neccessary
|
---|
| 324 | if((numAtomDefragSkips<MAX_FRAGMENTATION_SKIPS) &&
|
---|
| 325 | (atomIdPool.size()<lastAtomPoolSize+MAX_POOL_FRAGMENTATION)){
|
---|
| 326 | ++numAtomDefragSkips;
|
---|
| 327 | return;
|
---|
| 328 | }
|
---|
| 329 | for(atomIdPool_t::iterator iter = atomIdPool.begin();iter!=atomIdPool.end();){
|
---|
| 330 | // see if this range is adjacent to the next one
|
---|
| 331 | atomIdPool_t::iterator next = iter;
|
---|
| 332 | next++;
|
---|
[dc11c9] | 333 | if(next!=atomIdPool.end() && (next->first==iter->last)){
|
---|
[127a8e] | 334 | // merge the two ranges
|
---|
[dc11c9] | 335 | range<atomId_t> newRange = makeRange(iter->first,next->last);
|
---|
[127a8e] | 336 | atomIdPool.erase(iter);
|
---|
| 337 | atomIdPool.erase(next);
|
---|
| 338 | pair<atomIdPool_t::iterator,bool> res = atomIdPool.insert(newRange);
|
---|
| 339 | ASSERT(res.second,"Id-Pool was confused");
|
---|
| 340 | iter=res.first;
|
---|
| 341 | continue;
|
---|
| 342 | }
|
---|
| 343 | ++iter;
|
---|
| 344 | }
|
---|
| 345 | if(!atomIdPool.empty()){
|
---|
| 346 | // check if the last range is at the border
|
---|
| 347 | atomIdPool_t::iterator iter = atomIdPool.end();
|
---|
| 348 | iter--;
|
---|
[dc11c9] | 349 | if(iter->last==currAtomId){
|
---|
[127a8e] | 350 | currAtomId=iter->first;
|
---|
| 351 | atomIdPool.erase(iter);
|
---|
| 352 | }
|
---|
[88d586] | 353 | }
|
---|
[127a8e] | 354 | lastAtomPoolSize=atomIdPool.size();
|
---|
| 355 | numAtomDefragSkips=0;
|
---|
[88d586] | 356 | }
|
---|
[57adc7] | 357 |
|
---|
| 358 | // Molecules
|
---|
| 359 |
|
---|
[127a8e] | 360 | moleculeId_t World::getNextMoleculeId(){
|
---|
| 361 | // try to find an Id in the pool;
|
---|
| 362 | if(!moleculeIdPool.empty()){
|
---|
| 363 | moleculeIdPool_t::iterator iter=moleculeIdPool.begin();
|
---|
| 364 | moleculeId_t id = iter->first;
|
---|
[dc11c9] | 365 | range<moleculeId_t> newRange = makeRange(id+1,iter->last);
|
---|
[127a8e] | 366 | // we wont use this iterator anymore, so we don't care about invalidating
|
---|
| 367 | moleculeIdPool.erase(iter);
|
---|
[dc11c9] | 368 | if(newRange.first<newRange.last){
|
---|
[127a8e] | 369 | moleculeIdPool.insert(newRange);
|
---|
| 370 | }
|
---|
| 371 | return id;
|
---|
| 372 | }
|
---|
| 373 | // Nothing in the pool... we are out of luck
|
---|
| 374 | return currMoleculeId++;
|
---|
| 375 | }
|
---|
| 376 |
|
---|
| 377 | void World::releaseMoleculeId(moleculeId_t id){
|
---|
[dc11c9] | 378 | moleculeIdPool.insert(makeRange(id,id+1));
|
---|
[127a8e] | 379 | defragMoleculeIdPool();
|
---|
| 380 | }
|
---|
| 381 |
|
---|
| 382 | bool World::reserveMoleculeId(moleculeId_t id){
|
---|
| 383 | if(id>=currMoleculeId ){
|
---|
[dc11c9] | 384 | range<moleculeId_t> newRange = makeRange(currMoleculeId,id);
|
---|
| 385 | if(newRange.first<newRange.last){
|
---|
[127a8e] | 386 | moleculeIdPool.insert(newRange);
|
---|
| 387 | }
|
---|
| 388 | currMoleculeId=id+1;
|
---|
| 389 | defragMoleculeIdPool();
|
---|
| 390 | return true;
|
---|
| 391 | }
|
---|
| 392 | // look for a range that matches the request
|
---|
| 393 | for(moleculeIdPool_t::iterator iter=moleculeIdPool.begin();iter!=moleculeIdPool.end();++iter){
|
---|
[dc11c9] | 394 | if(iter->isBefore(id)){
|
---|
[127a8e] | 395 | // we have coverd all available ranges... nothing to be found here
|
---|
| 396 | break;
|
---|
| 397 | }
|
---|
| 398 | // no need to check first, since it has to be <=id, since otherwise we would have broken out
|
---|
[dc11c9] | 399 | if(!iter->isBeyond(id)){
|
---|
[127a8e] | 400 | // we found a matching range... get the id from this range
|
---|
| 401 |
|
---|
| 402 | // split up this range at the point of id
|
---|
[dc11c9] | 403 | range<moleculeId_t> bottomRange = makeRange(iter->first,id);
|
---|
| 404 | range<moleculeId_t> topRange = makeRange(id+1,iter->last);
|
---|
[127a8e] | 405 | // remove this range
|
---|
| 406 | moleculeIdPool.erase(iter);
|
---|
[dc11c9] | 407 | if(bottomRange.first<bottomRange.last){
|
---|
[127a8e] | 408 | moleculeIdPool.insert(bottomRange);
|
---|
| 409 | }
|
---|
[dc11c9] | 410 | if(topRange.first<topRange.last){
|
---|
[127a8e] | 411 | moleculeIdPool.insert(topRange);
|
---|
| 412 | }
|
---|
| 413 | defragMoleculeIdPool();
|
---|
| 414 | return true;
|
---|
| 415 | }
|
---|
| 416 | }
|
---|
| 417 | // this ID could not be reserved
|
---|
| 418 | return false;
|
---|
| 419 | }
|
---|
| 420 |
|
---|
| 421 | void World::defragMoleculeIdPool(){
|
---|
| 422 | // check if the situation is bad enough to make defragging neccessary
|
---|
| 423 | if((numMoleculeDefragSkips<MAX_FRAGMENTATION_SKIPS) &&
|
---|
| 424 | (moleculeIdPool.size()<lastMoleculePoolSize+MAX_POOL_FRAGMENTATION)){
|
---|
| 425 | ++numMoleculeDefragSkips;
|
---|
| 426 | return;
|
---|
| 427 | }
|
---|
| 428 | for(moleculeIdPool_t::iterator iter = moleculeIdPool.begin();iter!=moleculeIdPool.end();){
|
---|
| 429 | // see if this range is adjacent to the next one
|
---|
| 430 | moleculeIdPool_t::iterator next = iter;
|
---|
| 431 | next++;
|
---|
[dc11c9] | 432 | if(next!=moleculeIdPool.end() && (next->first==iter->last)){
|
---|
[127a8e] | 433 | // merge the two ranges
|
---|
[dc11c9] | 434 | range<moleculeId_t> newRange = makeRange(iter->first,next->last);
|
---|
[127a8e] | 435 | moleculeIdPool.erase(iter);
|
---|
| 436 | moleculeIdPool.erase(next);
|
---|
| 437 | pair<moleculeIdPool_t::iterator,bool> res = moleculeIdPool.insert(newRange);
|
---|
| 438 | ASSERT(res.second,"Id-Pool was confused");
|
---|
| 439 | iter=res.first;
|
---|
| 440 | continue;
|
---|
| 441 | }
|
---|
| 442 | ++iter;
|
---|
| 443 | }
|
---|
| 444 | if(!moleculeIdPool.empty()){
|
---|
| 445 | // check if the last range is at the border
|
---|
| 446 | moleculeIdPool_t::iterator iter = moleculeIdPool.end();
|
---|
| 447 | iter--;
|
---|
[dc11c9] | 448 | if(iter->last==currMoleculeId){
|
---|
[127a8e] | 449 | currMoleculeId=iter->first;
|
---|
| 450 | moleculeIdPool.erase(iter);
|
---|
| 451 | }
|
---|
| 452 | }
|
---|
| 453 | lastMoleculePoolSize=moleculeIdPool.size();
|
---|
| 454 | numMoleculeDefragSkips=0;
|
---|
| 455 | }
|
---|
| 456 |
|
---|
[865a945] | 457 | /******************************* Iterators ********************************/
|
---|
| 458 |
|
---|
[fa0b18] | 459 | // external parts with observers
|
---|
| 460 |
|
---|
[6e97e5] | 461 | CONSTRUCT_SELECTIVE_ITERATOR(atom*,World::AtomSet,AtomDescriptor);
|
---|
| 462 |
|
---|
[fa0b18] | 463 | World::AtomIterator
|
---|
| 464 | World::getAtomIter(AtomDescriptor descr){
|
---|
| 465 | return AtomIterator(descr,atoms);
|
---|
| 466 | }
|
---|
[865a945] | 467 |
|
---|
[fa0b18] | 468 | World::AtomIterator
|
---|
| 469 | World::getAtomIter(){
|
---|
| 470 | return AtomIterator(AllAtoms(),atoms);
|
---|
[865a945] | 471 | }
|
---|
[354859] | 472 |
|
---|
[fa0b18] | 473 | World::AtomIterator
|
---|
| 474 | World::atomEnd(){
|
---|
[6e97e5] | 475 | return AtomIterator(AllAtoms(),atoms,atoms.end());
|
---|
[7c4e29] | 476 | }
|
---|
| 477 |
|
---|
[6e97e5] | 478 | CONSTRUCT_SELECTIVE_ITERATOR(molecule*,World::MoleculeSet,MoleculeDescriptor);
|
---|
| 479 |
|
---|
[5d880e] | 480 | World::MoleculeIterator
|
---|
| 481 | World::getMoleculeIter(MoleculeDescriptor descr){
|
---|
| 482 | return MoleculeIterator(descr,molecules);
|
---|
| 483 | }
|
---|
| 484 |
|
---|
| 485 | World::MoleculeIterator
|
---|
| 486 | World::getMoleculeIter(){
|
---|
| 487 | return MoleculeIterator(AllMolecules(),molecules);
|
---|
[1c51c8] | 488 | }
|
---|
| 489 |
|
---|
[5d880e] | 490 | World::MoleculeIterator
|
---|
| 491 | World::moleculeEnd(){
|
---|
[6e97e5] | 492 | return MoleculeIterator(AllMolecules(),molecules,molecules.end());
|
---|
[1c51c8] | 493 | }
|
---|
| 494 |
|
---|
[fa0b18] | 495 | // Internal parts, without observers
|
---|
| 496 |
|
---|
| 497 | // Build the AtomIterator from template
|
---|
| 498 | CONSTRUCT_SELECTIVE_ITERATOR(atom*,World::AtomSet::set_t,AtomDescriptor);
|
---|
| 499 |
|
---|
| 500 |
|
---|
| 501 | World::internal_AtomIterator
|
---|
| 502 | World::getAtomIter_internal(AtomDescriptor descr){
|
---|
| 503 | return internal_AtomIterator(descr,atoms.getContent());
|
---|
| 504 | }
|
---|
| 505 |
|
---|
| 506 | World::internal_AtomIterator
|
---|
| 507 | World::atomEnd_internal(){
|
---|
| 508 | return internal_AtomIterator(AllAtoms(),atoms.getContent(),atoms.end_internal());
|
---|
| 509 | }
|
---|
| 510 |
|
---|
[6e97e5] | 511 | // build the MoleculeIterator from template
|
---|
[e3d865] | 512 | CONSTRUCT_SELECTIVE_ITERATOR(molecule*,World::MoleculeSet::set_t,MoleculeDescriptor);
|
---|
[6e97e5] | 513 |
|
---|
[e3d865] | 514 | World::internal_MoleculeIterator World::getMoleculeIter_internal(MoleculeDescriptor descr){
|
---|
| 515 | return internal_MoleculeIterator(descr,molecules.getContent());
|
---|
[1c51c8] | 516 | }
|
---|
| 517 |
|
---|
[e3d865] | 518 | World::internal_MoleculeIterator World::moleculeEnd_internal(){
|
---|
| 519 | return internal_MoleculeIterator(AllMolecules(),molecules.getContent(),molecules.end_internal());
|
---|
[1c51c8] | 520 | }
|
---|
| 521 |
|
---|
[90c4280] | 522 | /************************** Selection of Atoms and molecules ******************/
|
---|
| 523 |
|
---|
| 524 | // Atoms
|
---|
| 525 |
|
---|
| 526 | void World::clearAtomSelection(){
|
---|
| 527 | selectedAtoms.clear();
|
---|
| 528 | }
|
---|
| 529 |
|
---|
| 530 | void World::selectAtom(atom *atom){
|
---|
| 531 | ASSERT(atom,"Invalid pointer in selection of atom");
|
---|
| 532 | selectedAtoms[atom->getId()]=atom;
|
---|
| 533 | }
|
---|
| 534 |
|
---|
| 535 | void World::selectAtom(atomId_t id){
|
---|
| 536 | ASSERT(atoms.count(id),"Atom Id selected that was not in the world");
|
---|
| 537 | selectedAtoms[id]=atoms[id];
|
---|
| 538 | }
|
---|
| 539 |
|
---|
| 540 | void World::selectAllAtoms(AtomDescriptor descr){
|
---|
| 541 | internal_AtomIterator begin = getAtomIter_internal(descr);
|
---|
| 542 | internal_AtomIterator end = atomEnd_internal();
|
---|
| 543 | void (World::*func)(atom*) = &World::selectAtom; // needed for type resolution of overloaded function
|
---|
| 544 | for_each(begin,end,bind1st(mem_fun(func),this)); // func is select... see above
|
---|
| 545 | }
|
---|
| 546 |
|
---|
| 547 | void World::selectAtomsOfMolecule(molecule *_mol){
|
---|
| 548 | ASSERT(_mol,"Invalid pointer to molecule in selection of Atoms of Molecule");
|
---|
| 549 | // need to make it const to get the fast iterators
|
---|
| 550 | const molecule *mol = _mol;
|
---|
| 551 | void (World::*func)(atom*) = &World::selectAtom; // needed for type resolution of overloaded function
|
---|
| 552 | for_each(mol->begin(),mol->end(),bind1st(mem_fun(func),this)); // func is select... see above
|
---|
| 553 | }
|
---|
| 554 |
|
---|
| 555 | void World::selectAtomsOfMolecule(moleculeId_t id){
|
---|
| 556 | ASSERT(molecules.count(id),"No molecule with the given id upon Selection of atoms from molecule");
|
---|
| 557 | selectAtomsOfMolecule(molecules[id]);
|
---|
| 558 | }
|
---|
| 559 |
|
---|
[61d655e] | 560 | void World::unselectAtom(atom *atom){
|
---|
| 561 | ASSERT(atom,"Invalid pointer in unselection of atom");
|
---|
| 562 | unselectAtom(atom->getId());
|
---|
| 563 | }
|
---|
| 564 |
|
---|
| 565 | void World::unselectAtom(atomId_t id){
|
---|
| 566 | ASSERT(atoms.count(id),"Atom Id unselected that was not in the world");
|
---|
| 567 | selectedAtoms.erase(id);
|
---|
| 568 | }
|
---|
| 569 |
|
---|
| 570 | void World::unselectAllAtoms(AtomDescriptor descr){
|
---|
| 571 | internal_AtomIterator begin = getAtomIter_internal(descr);
|
---|
| 572 | internal_AtomIterator end = atomEnd_internal();
|
---|
| 573 | void (World::*func)(atom*) = &World::unselectAtom; // needed for type resolution of overloaded function
|
---|
| 574 | for_each(begin,end,bind1st(mem_fun(func),this)); // func is unselect... see above
|
---|
| 575 | }
|
---|
| 576 |
|
---|
| 577 | void World::unselectAtomsOfMolecule(molecule *_mol){
|
---|
| 578 | ASSERT(_mol,"Invalid pointer to molecule in selection of Atoms of Molecule");
|
---|
| 579 | // need to make it const to get the fast iterators
|
---|
| 580 | const molecule *mol = _mol;
|
---|
| 581 | void (World::*func)(atom*) = &World::unselectAtom; // needed for type resolution of overloaded function
|
---|
| 582 | for_each(mol->begin(),mol->end(),bind1st(mem_fun(func),this)); // func is unsselect... see above
|
---|
| 583 | }
|
---|
| 584 |
|
---|
| 585 | void World::unselectAtomsOfMolecule(moleculeId_t id){
|
---|
| 586 | ASSERT(molecules.count(id),"No molecule with the given id upon Selection of atoms from molecule");
|
---|
| 587 | unselectAtomsOfMolecule(molecules[id]);
|
---|
| 588 | }
|
---|
| 589 |
|
---|
[e472eab] | 590 | size_t World::countSelectedAtoms() const {
|
---|
[eacc3b] | 591 | size_t count = 0;
|
---|
[e472eab] | 592 | for (AtomSet::const_iterator iter = selectedAtoms.begin(); iter != selectedAtoms.end(); ++iter)
|
---|
[eacc3b] | 593 | count++;
|
---|
| 594 | return count;
|
---|
| 595 | }
|
---|
| 596 |
|
---|
[e472eab] | 597 | bool World::isSelected(atom *atom) const {
|
---|
[e0e156] | 598 | return selectedAtoms.find(atom->getId()) != selectedAtoms.end();
|
---|
| 599 | }
|
---|
| 600 |
|
---|
[e472eab] | 601 | const std::vector<atom *> World::getSelectedAtoms() const {
|
---|
| 602 | std::vector<atom *> returnAtoms;
|
---|
| 603 | returnAtoms.resize(countSelectedAtoms());
|
---|
| 604 | int count = 0;
|
---|
| 605 | for (AtomSet::const_iterator iter = selectedAtoms.begin(); iter != selectedAtoms.end(); ++iter)
|
---|
| 606 | returnAtoms[count++] = iter->second;
|
---|
| 607 | return returnAtoms;
|
---|
| 608 | }
|
---|
| 609 |
|
---|
| 610 |
|
---|
[90c4280] | 611 | // Molecules
|
---|
| 612 |
|
---|
| 613 | void World::clearMoleculeSelection(){
|
---|
| 614 | selectedMolecules.clear();
|
---|
| 615 | }
|
---|
| 616 |
|
---|
| 617 | void World::selectMolecule(molecule *mol){
|
---|
| 618 | ASSERT(mol,"Invalid pointer to molecule in selection");
|
---|
| 619 | selectedMolecules[mol->getId()]=mol;
|
---|
| 620 | }
|
---|
| 621 |
|
---|
| 622 | void World::selectMolecule(moleculeId_t id){
|
---|
| 623 | ASSERT(molecules.count(id),"Molecule Id selected that was not in the world");
|
---|
| 624 | selectedMolecules[id]=molecules[id];
|
---|
| 625 | }
|
---|
| 626 |
|
---|
[e472eab] | 627 | void World::selectAllMolecules(MoleculeDescriptor descr){
|
---|
[90c4280] | 628 | internal_MoleculeIterator begin = getMoleculeIter_internal(descr);
|
---|
| 629 | internal_MoleculeIterator end = moleculeEnd_internal();
|
---|
| 630 | void (World::*func)(molecule*) = &World::selectMolecule; // needed for type resolution of overloaded function
|
---|
| 631 | for_each(begin,end,bind1st(mem_fun(func),this)); // func is select... see above
|
---|
| 632 | }
|
---|
| 633 |
|
---|
| 634 | void World::selectMoleculeOfAtom(atom *atom){
|
---|
| 635 | ASSERT(atom,"Invalid atom pointer in selection of MoleculeOfAtom");
|
---|
| 636 | molecule *mol=atom->getMolecule();
|
---|
| 637 | // the atom might not be part of a molecule
|
---|
| 638 | if(mol){
|
---|
| 639 | selectMolecule(mol);
|
---|
| 640 | }
|
---|
| 641 | }
|
---|
| 642 |
|
---|
| 643 | void World::selectMoleculeOfAtom(atomId_t id){
|
---|
| 644 | ASSERT(atoms.count(id),"No such atom with given ID in selection of Molecules of Atom");\
|
---|
| 645 | selectMoleculeOfAtom(atoms[id]);
|
---|
| 646 | }
|
---|
| 647 |
|
---|
[61d655e] | 648 | void World::unselectMolecule(molecule *mol){
|
---|
| 649 | ASSERT(mol,"invalid pointer in unselection of molecule");
|
---|
| 650 | unselectMolecule(mol->getId());
|
---|
| 651 | }
|
---|
| 652 |
|
---|
| 653 | void World::unselectMolecule(moleculeId_t id){
|
---|
| 654 | ASSERT(molecules.count(id),"No such molecule with ID in unselection");
|
---|
| 655 | selectedMolecules.erase(id);
|
---|
| 656 | }
|
---|
| 657 |
|
---|
[e472eab] | 658 | void World::unselectAllMolecules(MoleculeDescriptor descr){
|
---|
[61d655e] | 659 | internal_MoleculeIterator begin = getMoleculeIter_internal(descr);
|
---|
| 660 | internal_MoleculeIterator end = moleculeEnd_internal();
|
---|
| 661 | void (World::*func)(molecule*) = &World::unselectMolecule; // needed for type resolution of overloaded function
|
---|
| 662 | for_each(begin,end,bind1st(mem_fun(func),this)); // func is unselect... see above
|
---|
| 663 | }
|
---|
| 664 |
|
---|
| 665 | void World::unselectMoleculeOfAtom(atom *atom){
|
---|
| 666 | ASSERT(atom,"Invalid atom pointer in selection of MoleculeOfAtom");
|
---|
| 667 | molecule *mol=atom->getMolecule();
|
---|
| 668 | // the atom might not be part of a molecule
|
---|
| 669 | if(mol){
|
---|
| 670 | unselectMolecule(mol);
|
---|
| 671 | }
|
---|
| 672 | }
|
---|
| 673 |
|
---|
| 674 | void World::unselectMoleculeOfAtom(atomId_t id){
|
---|
| 675 | ASSERT(atoms.count(id),"No such atom with given ID in selection of Molecules of Atom");\
|
---|
| 676 | unselectMoleculeOfAtom(atoms[id]);
|
---|
| 677 | }
|
---|
| 678 |
|
---|
[e472eab] | 679 | size_t World::countSelectedMolecules() const {
|
---|
[eacc3b] | 680 | size_t count = 0;
|
---|
[e472eab] | 681 | for (MoleculeSet::const_iterator iter = selectedMolecules.begin(); iter != selectedMolecules.end(); ++iter)
|
---|
[eacc3b] | 682 | count++;
|
---|
| 683 | return count;
|
---|
| 684 | }
|
---|
| 685 |
|
---|
[e472eab] | 686 | bool World::isSelected(molecule *mol) const {
|
---|
[e0e156] | 687 | return selectedMolecules.find(mol->getId()) != selectedMolecules.end();
|
---|
| 688 | }
|
---|
| 689 |
|
---|
[e472eab] | 690 | const std::vector<molecule *> World::getSelectedMolecules() const {
|
---|
| 691 | std::vector<molecule *> returnMolecules;
|
---|
| 692 | returnMolecules.resize(countSelectedMolecules());
|
---|
| 693 | int count = 0;
|
---|
| 694 | for (MoleculeSet::const_iterator iter = selectedMolecules.begin(); iter != selectedMolecules.end(); ++iter)
|
---|
| 695 | returnMolecules[count++] = iter->second;
|
---|
| 696 | return returnMolecules;
|
---|
| 697 | }
|
---|
| 698 |
|
---|
[3839e5] | 699 | /******************* Iterators over Selection *****************************/
|
---|
| 700 | World::AtomSelectionIterator World::beginAtomSelection(){
|
---|
| 701 | return selectedAtoms.begin();
|
---|
| 702 | }
|
---|
| 703 |
|
---|
| 704 | World::AtomSelectionIterator World::endAtomSelection(){
|
---|
| 705 | return selectedAtoms.end();
|
---|
| 706 | }
|
---|
| 707 |
|
---|
| 708 |
|
---|
| 709 | World::MoleculeSelectionIterator World::beginMoleculeSelection(){
|
---|
| 710 | return selectedMolecules.begin();
|
---|
| 711 | }
|
---|
| 712 |
|
---|
| 713 | World::MoleculeSelectionIterator World::endMoleculeSelection(){
|
---|
| 714 | return selectedMolecules.end();
|
---|
| 715 | }
|
---|
| 716 |
|
---|
[5d1611] | 717 | /******************************* Singleton Stuff **************************/
|
---|
| 718 |
|
---|
[7a1ce5] | 719 | World::World() :
|
---|
[cd5047] | 720 | Observable("World"),
|
---|
[354859] | 721 | periode(new periodentafel),
|
---|
[8e1f7af] | 722 | configuration(new config),
|
---|
[43dad6] | 723 | Thermostats(new ThermoStatContainer),
|
---|
[e4b5de] | 724 | ExitFlag(0),
|
---|
[fa0b18] | 725 | atoms(this),
|
---|
[90c4280] | 726 | selectedAtoms(this),
|
---|
[24a5e0] | 727 | currAtomId(0),
|
---|
[127a8e] | 728 | lastAtomPoolSize(0),
|
---|
| 729 | numAtomDefragSkips(0),
|
---|
[51be2a] | 730 | molecules(this),
|
---|
[90c4280] | 731 | selectedMolecules(this),
|
---|
[24a5e0] | 732 | currMoleculeId(0),
|
---|
| 733 | molecules_deprecated(new MoleculeListClass(this))
|
---|
[7dad10] | 734 | {
|
---|
[84c494] | 735 | cell_size = new Box;
|
---|
| 736 | Matrix domain;
|
---|
| 737 | domain.at(0,0) = 20;
|
---|
| 738 | domain.at(1,1) = 20;
|
---|
| 739 | domain.at(2,2) = 20;
|
---|
| 740 | cell_size->setM(domain);
|
---|
[387b36] | 741 | defaultName = "none";
|
---|
[7dad10] | 742 | molecules_deprecated->signOn(this);
|
---|
| 743 | }
|
---|
[5d1611] | 744 |
|
---|
| 745 | World::~World()
|
---|
[354859] | 746 | {
|
---|
[028c2e] | 747 | molecules_deprecated->signOff(this);
|
---|
[84c494] | 748 | delete cell_size;
|
---|
[46d958] | 749 | delete molecules_deprecated;
|
---|
[cbc5fb] | 750 | MoleculeSet::iterator molIter;
|
---|
| 751 | for(molIter=molecules.begin();molIter!=molecules.end();++molIter){
|
---|
| 752 | DeleteMolecule((*molIter).second);
|
---|
| 753 | }
|
---|
| 754 | molecules.clear();
|
---|
| 755 | AtomSet::iterator atIter;
|
---|
| 756 | for(atIter=atoms.begin();atIter!=atoms.end();++atIter){
|
---|
| 757 | DeleteAtom((*atIter).second);
|
---|
[46d958] | 758 | }
|
---|
| 759 | atoms.clear();
|
---|
[6cb9c76] | 760 | delete periode;
|
---|
| 761 | delete configuration;
|
---|
| 762 | delete Thermostats;
|
---|
[354859] | 763 | }
|
---|
[5d1611] | 764 |
|
---|
[23b547] | 765 | // Explicit instantiation of the singleton mechanism at this point
|
---|
[5d1611] | 766 |
|
---|
[23b547] | 767 | CONSTRUCT_SINGLETON(World)
|
---|
[5d1611] | 768 |
|
---|
[5f1d5b8] | 769 | CONSTRUCT_OBSERVEDCONTAINER(World::AtomSTLSet)
|
---|
| 770 |
|
---|
| 771 | CONSTRUCT_OBSERVEDCONTAINER(World::MoleculeSTLSet)
|
---|
| 772 |
|
---|
[5d1611] | 773 | /******************************* deprecated Legacy Stuff ***********************/
|
---|
| 774 |
|
---|
[354859] | 775 | MoleculeListClass *&World::getMolecules() {
|
---|
| 776 | return molecules_deprecated;
|
---|
[5d1611] | 777 | }
|
---|