| [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);
 | 
|---|
| [97f9b9] | 57 |     void set(const std::vector< std::string > &_conditions);
 | 
|---|
| [dd067a] | 58 |     void set(size_t index, const BoundaryCondition_t _condition);
 | 
|---|
| [97f9b9] | 59 |     void set(size_t index, const std::string &_conditions);
 | 
|---|
| [dd067a] | 60 | 
 | 
|---|
 | 61 |     // converter
 | 
|---|
 | 62 |     const std::string & getName(const BoundaryCondition_t &condition) const;
 | 
|---|
 | 63 |     const BoundaryCondition_t &getEnum(const std::string &condition) const;
 | 
|---|
 | 64 | 
 | 
|---|
| [c52e08] | 65 | 
 | 
|---|
| [dd067a] | 66 |   private:
 | 
|---|
 | 67 |     //!> typedef for the internal enum to string map
 | 
|---|
 | 68 |     typedef std::map<BoundaryCondition_t, std::string> EnumToStringMap;
 | 
|---|
 | 69 |     //!> instance of the enum to string conversion bimap
 | 
|---|
 | 70 |     EnumToStringMap ConverterBiMap;
 | 
|---|
 | 71 | 
 | 
|---|
 | 72 |     //!> typedef for the internal string to enum map
 | 
|---|
 | 73 |     typedef std::map<std::string, BoundaryCondition_t> StringToEnumMap;
 | 
|---|
 | 74 |     //!> instance of the string to enum conversion bimap
 | 
|---|
 | 75 |     StringToEnumMap ReConverterBiMap;
 | 
|---|
 | 76 |   };
 | 
|---|
 | 77 | 
 | 
|---|
 | 78 | } /* namespace BoundaryConditions */
 | 
|---|
 | 79 | 
 | 
|---|
 | 80 | std::ostream &operator<<(std::ostream &out, const BoundaryConditions::BCContainer &t);
 | 
|---|
 | 81 | 
 | 
|---|
 | 82 | std::istream &operator>>(std::istream &in, BoundaryConditions::BCContainer &t);
 | 
|---|
 | 83 | 
 | 
|---|
 | 84 | 
 | 
|---|
 | 85 | #endif /* BOX_BOUNDARYCONDITIONS_HPP_ */
 | 
|---|