00001 #ifdef CH_LANG_CC
00002
00003
00004
00005
00006
00007
00008
00009 #endif
00010
00011 #ifndef _CORNERCOPIER_H_
00012 #define _CORNERCOPIER_H_
00013
00014 #include "DisjointBoxLayout.H"
00015 #include "Pool.H"
00016 #include "Vector.H"
00017 #include "ProblemDomain.H"
00018 #include "Copier.H"
00019 #include "NamespaceHeader.H"
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031 class CornerCopier: public Copier
00032 {
00033 public:
00034
00035
00036 CornerCopier()
00037 {
00038 m_ghost = -IntVect::Unit;
00039 }
00040
00041
00042
00043
00044
00045
00046 CornerCopier(const DisjointBoxLayout& a_level, const BoxLayout& a_dest,
00047 bool a_exchange = false);
00048
00049
00050
00051
00052
00053
00054 CornerCopier(const DisjointBoxLayout& a_level, const BoxLayout& a_dest,
00055 const ProblemDomain& a_domain,
00056 bool a_exchange = false);
00057
00058
00059
00060
00061
00062 CornerCopier(const DisjointBoxLayout& a_level,
00063 const BoxLayout& a_dest,
00064 const IntVect& a_ghost,
00065 bool a_exchange = false);
00066
00067
00068
00069
00070
00071 CornerCopier(const DisjointBoxLayout& a_level,
00072 const BoxLayout& a_dest,
00073 const ProblemDomain& a_domain,
00074 const IntVect& a_ghost,
00075 bool a_exchange = false);
00076
00077
00078 virtual ~CornerCopier();
00079
00080
00081 virtual void define(const DisjointBoxLayout& a_level,
00082 const BoxLayout& a_dest,
00083 bool a_exchange = false);
00084
00085
00086 virtual void define(const DisjointBoxLayout& a_level,
00087 const BoxLayout& a_dest,
00088 const ProblemDomain& a_domain,
00089 bool a_exchange = false);
00090
00091
00092 virtual void define(const DisjointBoxLayout& a_level,
00093 const BoxLayout& a_dest,
00094 const IntVect& a_ghost,
00095 bool a_exchange = false);
00096
00097
00098 virtual void define(const BoxLayout& a_level,
00099 const BoxLayout& a_dest,
00100 const ProblemDomain& a_domain,
00101 const IntVect& a_ghost,
00102 bool a_exchange = false);
00103
00104
00105 virtual void clear();
00106
00107 const IntVect& ghost()
00108 {
00109 return m_ghost;
00110 }
00111
00112 protected:
00113
00114 private:
00115
00116 IntVect m_ghost;
00117 };
00118
00119 std::ostream& operator<<(std::ostream& os, const CornerCopier& copier);
00120
00121
00122 #include "NamespaceFooter.H"
00123 #endif