[dd067a] | 1 | /*
|
---|
| 2 | * Box_BoundaryConditions.hpp
|
---|
| 3 | *
|
---|
| 4 | * Created on: Jan 2, 2012
|
---|
| 5 | * Author: heber
|
---|
| 6 | */
|
---|
| 7 |
|
---|
| 8 | #ifndef BOX_BOUNDARYCONDITIONS_HPP_
|
---|
| 9 | #define BOX_BOUNDARYCONDITIONS_HPP_
|
---|
| 10 |
|
---|
| 11 | // include config.h
|
---|
| 12 | #ifdef HAVE_CONFIG_H
|
---|
| 13 | #include <config.h>
|
---|
| 14 | #endif
|
---|
| 15 |
|
---|
| 16 | #include <boost/array.hpp>
|
---|
| 17 | #include <iosfwd>
|
---|
| 18 | #include <map>
|
---|
| 19 | #include <vector>
|
---|
| 20 | #include <string>
|
---|
| 21 |
|
---|
| 22 | #include "LinearAlgebra/defs.hpp"
|
---|
| 23 |
|
---|
| 24 | class Box_BoundaryConditionsTest;
|
---|
| 25 |
|
---|
| 26 | namespace BoundaryConditions {
|
---|
| 27 |
|
---|
| 28 | //!> typedef for enumeration of boundary conditions
|
---|
| 29 | typedef enum{
|
---|
| 30 | Wrap,
|
---|
| 31 | Bounce,
|
---|
| 32 | Ignore,
|
---|
| 33 | MAX_BoundaryCondition_t
|
---|
| 34 | } BoundaryCondition_t;
|
---|
| 35 |
|
---|
| 36 | //!> typedef for vector containing boundary conditions
|
---|
| 37 | typedef std::vector<BoundaryCondition_t> Conditions_t;
|
---|
| 38 |
|
---|
| 39 | /** This class is a convenience wrapper for the vector of BoundaryCondition_t.
|
---|
| 40 | *
|
---|
| 41 | * Here, we place functions for easily printing the boundary conditions,
|
---|
| 42 | * converting from string to enum, and so on.
|
---|
| 43 | */
|
---|
| 44 | class BCContainer : public Conditions_t
|
---|
| 45 | {
|
---|
| 46 | //!> grant unit test access to private members
|
---|
| 47 | friend class ::Box_BoundaryConditionsTest;
|
---|
| 48 | public:
|
---|
| 49 |
|
---|
| 50 | BCContainer();
|
---|
| 51 | ~BCContainer();
|
---|
| 52 |
|
---|
| 53 | // getter and setter
|
---|
| 54 | const Conditions_t & get() const;
|
---|
| 55 | const BoundaryCondition_t get(size_t index) const;
|
---|
| 56 | void set(const Conditions_t &_conditions);
|
---|
| 57 | void set(size_t index, const BoundaryCondition_t _condition);
|
---|
| 58 |
|
---|
| 59 | // converter
|
---|
| 60 | const std::string & getName(const BoundaryCondition_t &condition) const;
|
---|
| 61 | const BoundaryCondition_t &getEnum(const std::string &condition) const;
|
---|
| 62 |
|
---|
[c52e08] | 63 |
|
---|
[dd067a] | 64 | private:
|
---|
| 65 | //!> typedef for the internal enum to string map
|
---|
| 66 | typedef std::map<BoundaryCondition_t, std::string> EnumToStringMap;
|
---|
| 67 | //!> instance of the enum to string conversion bimap
|
---|
| 68 | EnumToStringMap ConverterBiMap;
|
---|
| 69 |
|
---|
| 70 | //!> typedef for the internal string to enum map
|
---|
| 71 | typedef std::map<std::string, BoundaryCondition_t> StringToEnumMap;
|
---|
| 72 | //!> instance of the string to enum conversion bimap
|
---|
| 73 | StringToEnumMap ReConverterBiMap;
|
---|
| 74 | };
|
---|
| 75 |
|
---|
| 76 | } /* namespace BoundaryConditions */
|
---|
| 77 |
|
---|
| 78 | std::ostream &operator<<(std::ostream &out, const BoundaryConditions::BCContainer &t);
|
---|
| 79 |
|
---|
| 80 | std::istream &operator>>(std::istream &in, BoundaryConditions::BCContainer &t);
|
---|
| 81 |
|
---|
| 82 |
|
---|
| 83 | #endif /* BOX_BOUNDARYCONDITIONS_HPP_ */
|
---|