00001 #ifdef CH_LANG_CC 00002 /* 00003 * _______ __ 00004 * / ___/ / ___ __ _ / / ___ 00005 * / /__/ _ \/ _ \/ V \/ _ \/ _ \ 00006 * \___/_//_/\___/_/_/_/_.__/\___/ 00007 * Please refer to Copyright.txt, in Chombo's root directory. 00008 */ 00009 #endif 00010 00011 #ifndef _CFREGION_H_ 00012 #define _CFREGION_H_ 00013 00014 #include "REAL.H" 00015 #include "BaseFab.H" 00016 #include "FArrayBox.H" 00017 #include "LayoutData.H" 00018 #include "DisjointBoxLayout.H" 00019 #include "CFIVS.H" 00020 #include "NamespaceHeader.H" 00021 00022 00024 00028 class CFRegion 00029 { 00030 public: 00031 00033 00036 CFRegion():m_defined(false){;} 00037 00039 00042 virtual ~CFRegion(){;} 00043 00044 00045 CFRegion(const CFRegion& a_rhs) 00046 { 00047 *this = a_rhs; 00048 } 00049 00051 00056 CFRegion(const DisjointBoxLayout& a_grids, 00057 const ProblemDomain& a_domain) 00058 { 00059 define(a_grids, a_domain); 00060 } 00062 00065 void 00066 define(const DisjointBoxLayout& a_grids, 00067 const ProblemDomain& a_domain); 00068 00069 00070 const CFRegion& operator=(const CFRegion& a_rhs); 00071 00072 const CFIVS& loCFIVS(const DataIndex& a_dit, int dir); 00073 const CFIVS& hiCFIVS(const DataIndex& a_dit, int dir); 00074 00075 void coarsen(int refRatio); 00076 00077 protected: 00078 00079 LayoutData<CFIVS> m_loCFIVS[SpaceDim]; 00080 LayoutData<CFIVS> m_hiCFIVS[SpaceDim]; 00081 bool m_defined; 00082 }; 00083 00084 #include "NamespaceFooter.H" 00085 #endif