| [bcf653] | 1 | /*
 | 
|---|
 | 2 |  * Project: MoleCuilder
 | 
|---|
 | 3 |  * Description: creates and alters molecular systems
 | 
|---|
 | 4 |  * Copyright (C)  2010 University of Bonn. All rights reserved.
 | 
|---|
 | 5 |  * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
 | 
|---|
 | 6 |  */
 | 
|---|
 | 7 | 
 | 
|---|
| [6b919f8] | 8 | /*
 | 
|---|
 | 9 |  * atom_bondedparticleinfo.cpp
 | 
|---|
 | 10 |  *
 | 
|---|
 | 11 |  *  Created on: Oct 19, 2009
 | 
|---|
 | 12 |  *      Author: heber
 | 
|---|
 | 13 |  */
 | 
|---|
 | 14 | 
 | 
|---|
| [bf3817] | 15 | // include config.h
 | 
|---|
 | 16 | #ifdef HAVE_CONFIG_H
 | 
|---|
 | 17 | #include <config.h>
 | 
|---|
 | 18 | #endif
 | 
|---|
 | 19 | 
 | 
|---|
| [ad011c] | 20 | #include "CodePatterns/MemDebug.hpp"
 | 
|---|
| [112b09] | 21 | 
 | 
|---|
| [9d83b6] | 22 | #include "CodePatterns/Assert.hpp"
 | 
|---|
| [38c44b] | 23 | #include "CodePatterns/Log.hpp"
 | 
|---|
| [9d83b6] | 24 | 
 | 
|---|
 | 25 | #include "WorldTime.hpp"
 | 
|---|
 | 26 | 
 | 
|---|
| [6b919f8] | 27 | #include "atom_bondedparticleinfo.hpp"
 | 
|---|
 | 28 | 
 | 
|---|
 | 29 | /** Constructor of class BondedParticleInfo.
 | 
|---|
 | 30 |  */
 | 
|---|
| [97b825] | 31 | BondedParticleInfo::BondedParticleInfo() :
 | 
|---|
 | 32 |   AdaptiveOrder(0),
 | 
|---|
 | 33 |   MaxOrder(false)
 | 
|---|
| [9d83b6] | 34 | {}
 | 
|---|
| [6b919f8] | 35 | 
 | 
|---|
 | 36 | /** Destructor of class BondedParticleInfo.
 | 
|---|
 | 37 |  */
 | 
|---|
 | 38 | BondedParticleInfo::~BondedParticleInfo()
 | 
|---|
| [9d83b6] | 39 | {}
 | 
|---|
 | 40 | 
 | 
|---|
| [1e6249] | 41 | void BondedParticleInfo::AppendTrajectoryStep()
 | 
|---|
 | 42 | {
 | 
|---|
 | 43 |   ListOfBonds.push_back(BondList());
 | 
|---|
| [38c44b] | 44 |   LOG(5,"BondedParticleInfo::AppendTrajectoryStep() called, size is " << ListOfBonds.size());
 | 
|---|
| [1e6249] | 45 | }
 | 
|---|
 | 46 | 
 | 
|---|
| [9d83b6] | 47 | const BondList& BondedParticleInfo::getListOfBonds() const
 | 
|---|
 | 48 | {
 | 
|---|
 | 49 |   ASSERT(WorldTime::getTime() < ListOfBonds.size(),
 | 
|---|
 | 50 |       "BondedParticleInfo::getBondsAtStep() - Access out of range: "
 | 
|---|
 | 51 |       +toString(WorldTime::getTime())
 | 
|---|
 | 52 |       +" not in [0,"+toString(ListOfBonds.size())+").");
 | 
|---|
 | 53 |   return ListOfBonds[WorldTime::getTime()];
 | 
|---|
 | 54 | }
 | 
|---|
 | 55 | 
 | 
|---|
 | 56 | BondList& BondedParticleInfo::getListOfBonds()
 | 
|---|
 | 57 | {
 | 
|---|
| [7188b1] | 58 |   // todo: here we actually need a container on whose destruction notifiy is emitted, i.e.
 | 
|---|
 | 59 |   // similar or simply an ObservedContainer.
 | 
|---|
 | 60 |   OBSERVE;
 | 
|---|
 | 61 |   NOTIFY(AtomObservable::BondsChanged);
 | 
|---|
| [9d83b6] | 62 |   const unsigned int size = ListOfBonds.size();
 | 
|---|
 | 63 |   ASSERT(WorldTime::getTime() <= size,
 | 
|---|
 | 64 |       "BondedParticleInfo::getBondsAtStep() - Access out of range: "
 | 
|---|
 | 65 |       +toString(WorldTime::getTime())
 | 
|---|
 | 66 |       +" not in [0,"+toString(size)+"].");
 | 
|---|
 | 67 |   if (WorldTime::getTime() == size) {
 | 
|---|
| [1e6249] | 68 |     UpdateSteps();
 | 
|---|
| [9d83b6] | 69 |   }
 | 
|---|
 | 70 |   return ListOfBonds[WorldTime::getTime()];
 | 
|---|
 | 71 | }
 | 
|---|
 | 72 | 
 | 
|---|
 | 73 | const BondList& BondedParticleInfo::getListOfBondsAtStep(unsigned int _step) const
 | 
|---|
| [6b919f8] | 74 | {
 | 
|---|
| [9d83b6] | 75 |   ASSERT(_step < ListOfBonds.size(),
 | 
|---|
 | 76 |       "BondedParticleInfo::getBondsAtStep() - Access out of range: "
 | 
|---|
| [1e6249] | 77 |       +toString(_step)
 | 
|---|
| [9d83b6] | 78 |       +" not in [0,"+toString(ListOfBonds.size())+").");
 | 
|---|
 | 79 |   return ListOfBonds[_step];
 | 
|---|
 | 80 | }
 | 
|---|
| [6b919f8] | 81 | 
 | 
|---|
| [9d83b6] | 82 | BondList& BondedParticleInfo::getListOfBondsAtStep(unsigned int _step)
 | 
|---|
 | 83 | {
 | 
|---|
 | 84 |   const unsigned int size = ListOfBonds.size();
 | 
|---|
 | 85 |   ASSERT(_step <= size,
 | 
|---|
 | 86 |       "BondedParticleInfo::getBondsAtStep() - Access out of range: "
 | 
|---|
 | 87 |       +toString(_step)
 | 
|---|
 | 88 |       +" not in [0,"+toString(size)+"].");
 | 
|---|
 | 89 |   if (_step == size) {
 | 
|---|
| [1e6249] | 90 |     UpdateSteps();
 | 
|---|
| [9d83b6] | 91 |   }
 | 
|---|
 | 92 |   return ListOfBonds[_step];
 | 
|---|
 | 93 | }
 | 
|---|