[8f50b4] | 1 | /*
|
---|
| 2 | * BondVectors.hpp
|
---|
| 3 | *
|
---|
| 4 | * Created on: Jun 13, 2017
|
---|
| 5 | * Author: heber
|
---|
| 6 | */
|
---|
| 7 |
|
---|
| 8 |
|
---|
| 9 | #ifndef DYNAMICS_BONDVECTORS_HPP_
|
---|
| 10 | #define DYNAMICS_BONDVECTORS_HPP_
|
---|
| 11 |
|
---|
| 12 | // include config.h
|
---|
| 13 | #ifdef HAVE_CONFIG_H
|
---|
| 14 | #include <config.h>
|
---|
| 15 | #endif
|
---|
| 16 |
|
---|
| 17 | #include <map>
|
---|
| 18 | #include <vector>
|
---|
| 19 |
|
---|
| 20 | #include "CodePatterns/Assert.hpp"
|
---|
| 21 |
|
---|
| 22 | #include "LinearAlgebra/Vector.hpp"
|
---|
| 23 |
|
---|
| 24 | #include "Bond/bond.hpp"
|
---|
| 25 |
|
---|
| 26 | /** This class represents all bond vectors, i.e. the normalized direction
|
---|
| 27 | * along a list of bonds, and provides means to extract them from a set of
|
---|
| 28 | * atoms such that for an arbitrary bond the vector can be quickly retrieved.
|
---|
| 29 | */
|
---|
| 30 | class BondVectors
|
---|
| 31 | {
|
---|
| 32 | public:
|
---|
| 33 | //!> typedef for the internal container of the bonds
|
---|
| 34 | typedef std::vector<bond::ptr> container_t;
|
---|
| 35 |
|
---|
| 36 | //!> typedef for the association of bonds to bond vectors
|
---|
| 37 | typedef std::map<bond::ptr, Vector> mapped_t;
|
---|
| 38 |
|
---|
| 39 | /** Prepares the internal container from the bonds of a range of atoms.
|
---|
| 40 | *
|
---|
| 41 | * \param _start start of range
|
---|
| 42 | * \param _end end of range
|
---|
| 43 | * \param _step time step to request bonds for
|
---|
| 44 | */
|
---|
| 45 | template <class T>
|
---|
| 46 | void setFromAtomRange(
|
---|
| 47 | typename T::iterator _start,
|
---|
| 48 | typename T::iterator _end,
|
---|
| 49 | const size_t &_step);
|
---|
| 50 |
|
---|
| 51 | /** Getter for the sorted bonds.
|
---|
| 52 | *
|
---|
| 53 | * \return const ref to internal container
|
---|
| 54 | */
|
---|
| 55 | const container_t& getSorted() const
|
---|
| 56 | {
|
---|
| 57 | ASSERT( !container.empty(),
|
---|
| 58 | "BondVectors::getSorted() - empty internal container, not set properly?");
|
---|
| 59 | return container;
|
---|
| 60 | }
|
---|
| 61 |
|
---|
| 62 | /** Calculates the bond vector for each bond in the internal container and
|
---|
| 63 | * returns them in same order as the internal container.
|
---|
| 64 | *
|
---|
| 65 | * \param _step time step for which the bond vector is request
|
---|
| 66 | * \return a map from bond to bond vector
|
---|
| 67 | */
|
---|
| 68 | mapped_t getBondVectorsAtStep(const size_t &_step) const;
|
---|
| 69 |
|
---|
| 70 | /** Get the position in the internal container for a specific bond.
|
---|
| 71 | *
|
---|
| 72 | * \param _bond given bond
|
---|
| 73 | * \return position in the vector, -1 if not present
|
---|
| 74 | */
|
---|
| 75 | size_t getIndexForBond(const bond::ptr &_bond) const;
|
---|
| 76 |
|
---|
| 77 | private:
|
---|
| 78 | //!> internal container for sorted bonds
|
---|
| 79 | container_t container;
|
---|
| 80 | };
|
---|
| 81 |
|
---|
| 82 | #include "BondVectors_impl.hpp"
|
---|
| 83 |
|
---|
| 84 | #endif /* DYNAMICS_BONDVECTORS_HPP_ */
|
---|