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
00023
00031 class CornerCopier: public Copier
00032 {
00033 public:
00034
00036 CornerCopier()
00037 {
00038 m_ghost = -IntVect::Unit;
00039 }
00040
00042
00046 CornerCopier(const DisjointBoxLayout& a_level, const BoxLayout& a_dest,
00047 bool a_exchange = false);
00048
00050
00054 CornerCopier(const DisjointBoxLayout& a_level, const BoxLayout& a_dest,
00055 const ProblemDomain& a_domain,
00056 bool a_exchange = false);
00057
00059
00062 CornerCopier(const DisjointBoxLayout& a_level,
00063 const BoxLayout& a_dest,
00064 const IntVect& a_ghost,
00065 bool a_exchange = false);
00066
00068
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
00078 virtual ~CornerCopier();
00079
00081 virtual void define(const DisjointBoxLayout& a_level,
00082 const BoxLayout& a_dest,
00083 bool a_exchange = false);
00084
00086 virtual void define(const DisjointBoxLayout& a_level,
00087 const BoxLayout& a_dest,
00088 const ProblemDomain& a_domain,
00089 bool a_exchange = false);
00090
00092 virtual void define(const DisjointBoxLayout& a_level,
00093 const BoxLayout& a_dest,
00094 const IntVect& a_ghost,
00095 bool a_exchange = false);
00096
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
00105 virtual void clear();
00106
00107 const IntVect& ghost(){ return m_ghost;}
00108
00109 protected:
00110
00111 private:
00112
00113 IntVect m_ghost;
00114 };
00115
00116 std::ostream& operator<<(std::ostream& os, const CornerCopier& copier);
00117
00118
00119 #include "NamespaceFooter.H"
00120 #endif