[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 | {
|
---|
| 58 | const unsigned int size = ListOfBonds.size();
|
---|
| 59 | ASSERT(WorldTime::getTime() <= size,
|
---|
| 60 | "BondedParticleInfo::getBondsAtStep() - Access out of range: "
|
---|
| 61 | +toString(WorldTime::getTime())
|
---|
| 62 | +" not in [0,"+toString(size)+"].");
|
---|
| 63 | if (WorldTime::getTime() == size) {
|
---|
[1e6249] | 64 | UpdateSteps();
|
---|
[9d83b6] | 65 | }
|
---|
| 66 | return ListOfBonds[WorldTime::getTime()];
|
---|
| 67 | }
|
---|
| 68 |
|
---|
| 69 | const BondList& BondedParticleInfo::getListOfBondsAtStep(unsigned int _step) const
|
---|
[6b919f8] | 70 | {
|
---|
[9d83b6] | 71 | ASSERT(_step < ListOfBonds.size(),
|
---|
| 72 | "BondedParticleInfo::getBondsAtStep() - Access out of range: "
|
---|
[1e6249] | 73 | +toString(_step)
|
---|
[9d83b6] | 74 | +" not in [0,"+toString(ListOfBonds.size())+").");
|
---|
| 75 | return ListOfBonds[_step];
|
---|
| 76 | }
|
---|
[6b919f8] | 77 |
|
---|
[9d83b6] | 78 | BondList& BondedParticleInfo::getListOfBondsAtStep(unsigned int _step)
|
---|
| 79 | {
|
---|
| 80 | const unsigned int size = ListOfBonds.size();
|
---|
| 81 | ASSERT(_step <= size,
|
---|
| 82 | "BondedParticleInfo::getBondsAtStep() - Access out of range: "
|
---|
| 83 | +toString(_step)
|
---|
| 84 | +" not in [0,"+toString(size)+"].");
|
---|
| 85 | if (_step == size) {
|
---|
[1e6249] | 86 | UpdateSteps();
|
---|
[9d83b6] | 87 | }
|
---|
| 88 | return ListOfBonds[_step];
|
---|
| 89 | }
|
---|