[cee0b57] | 1 | /*
|
---|
| 2 | * molecule_pointcloud.cpp
|
---|
| 3 | *
|
---|
| 4 | * Created on: Oct 5, 2009
|
---|
| 5 | * Author: heber
|
---|
| 6 | */
|
---|
| 7 |
|
---|
[f66195] | 8 | #include "atom.hpp"
|
---|
[cee0b57] | 9 | #include "config.hpp"
|
---|
[9879f6] | 10 | #include "info.hpp"
|
---|
[cee0b57] | 11 | #include "memoryallocator.hpp"
|
---|
| 12 | #include "molecule.hpp"
|
---|
| 13 |
|
---|
| 14 | /************************************* Functions for class molecule *********************************/
|
---|
| 15 |
|
---|
[6a7f78c] | 16 | /** Returns a name for this point cloud, here the molecule's name.
|
---|
| 17 | * \return name of point cloud
|
---|
| 18 | */
|
---|
| 19 | const char * const molecule::GetName() const
|
---|
| 20 | {
|
---|
| 21 | return name;
|
---|
| 22 | };
|
---|
[cee0b57] | 23 |
|
---|
| 24 | /** Determine center of all atoms.
|
---|
| 25 | * \param *out output stream for debugging
|
---|
| 26 | * \return pointer to allocated with central coordinates
|
---|
| 27 | */
|
---|
[e138de] | 28 | Vector *molecule::GetCenter() const
|
---|
[cee0b57] | 29 | {
|
---|
[e138de] | 30 | Vector *center = DetermineCenterOfAll();
|
---|
[cee0b57] | 31 | return center;
|
---|
| 32 | };
|
---|
| 33 |
|
---|
| 34 |
|
---|
[9879f6] | 35 | /** PointCloud implementation of GoPoint
|
---|
| 36 | * Uses atoms and STL stuff.
|
---|
[71b20e] | 37 | */
|
---|
[9879f6] | 38 | TesselPoint* molecule::GetPoint() const
|
---|
[71b20e] | 39 | {
|
---|
[9879f6] | 40 | Info FunctionInfo(__func__);
|
---|
| 41 | return (*InternalPointer);
|
---|
[71b20e] | 42 | };
|
---|
| 43 |
|
---|
[9879f6] | 44 | /** PointCloud implementation of GoToNext.
|
---|
| 45 | * Uses atoms and STL stuff.
|
---|
[cee0b57] | 46 | */
|
---|
[776b64] | 47 | void molecule::GoToNext() const
|
---|
[cee0b57] | 48 | {
|
---|
[9879f6] | 49 | Info FunctionInfo(__func__);
|
---|
[d3347e] | 50 | if (InternalPointer != atoms.end())
|
---|
[9879f6] | 51 | InternalPointer++;
|
---|
[cee0b57] | 52 | };
|
---|
| 53 |
|
---|
[9879f6] | 54 | /** PointCloud implementation of GoToFirst.
|
---|
| 55 | * Uses atoms and STL stuff.
|
---|
[cee0b57] | 56 | */
|
---|
[776b64] | 57 | void molecule::GoToFirst() const
|
---|
[cee0b57] | 58 | {
|
---|
[9879f6] | 59 | Info FunctionInfo(__func__);
|
---|
[d3347e] | 60 | InternalPointer = atoms.begin();
|
---|
[cee0b57] | 61 | };
|
---|
| 62 |
|
---|
[9879f6] | 63 | /** PointCloud implementation of IsEmpty.
|
---|
| 64 | * Uses atoms and STL stuff.
|
---|
[cee0b57] | 65 | */
|
---|
[776b64] | 66 | bool molecule::IsEmpty() const
|
---|
[cee0b57] | 67 | {
|
---|
[9879f6] | 68 | Info FunctionInfo(__func__);
|
---|
| 69 | return (empty());
|
---|
[cee0b57] | 70 | };
|
---|
| 71 |
|
---|
[9879f6] | 72 | /** PointCloud implementation of IsLast.
|
---|
| 73 | * Uses atoms and STL stuff.
|
---|
[cee0b57] | 74 | */
|
---|
[776b64] | 75 | bool molecule::IsEnd() const
|
---|
[cee0b57] | 76 | {
|
---|
[9879f6] | 77 | Info FunctionInfo(__func__);
|
---|
[d3347e] | 78 | return (InternalPointer == atoms.end());
|
---|
[cee0b57] | 79 | };
|
---|
[c72112] | 80 |
|
---|
| 81 | int molecule::GetMaxId() const {
|
---|
| 82 | return getAtomCount();
|
---|
| 83 | }
|
---|