00001 #ifdef CH_LANG_CC
00002
00003
00004
00005
00006
00007
00008
00009 #endif
00010
00011 #ifndef _INTERPINT_H_
00012 #define _INTERPINT_H_
00013
00014 #include <iostream>
00015 #include <fstream>
00016 #include "REAL.H"
00017 #include "Box.H"
00018 #include "FArrayBox.H"
00019 #include "LevelData.H"
00020 #include "IntVectSet.H"
00021 #include "ProblemDomain.H"
00022 #include "NamespaceHeader.H"
00023
00024
00025
00026
00027
00028
00029 class InterpInt
00030 {
00031 public:
00032
00033
00034
00035
00036 InterpInt()
00037 {
00038 m_isDefined = false;
00039 }
00040
00041
00042 virtual ~InterpInt(){}
00043
00044
00045 InterpInt(const DisjointBoxLayout& a_gridsFine,
00046 const DisjointBoxLayout& a_gridsCoar,
00047 int a_ref_ratio,
00048 int a_num_comps);
00049
00050
00051 void define(const DisjointBoxLayout& a_gridsFine,
00052 const DisjointBoxLayout& a_gridsCoar,
00053 int a_refRat,
00054 int a_nComp);
00055
00056
00057
00058 void
00059 fillFineFromCoarPWConst( LevelData<BaseFab<int> >& a_fine,
00060 const LevelData<BaseFab<int> >& a_coar,
00061 int a_src_comp,
00062 int a_dest_comp,
00063 int a_num_comp);
00064
00065 protected:
00066
00067 bool m_isDefined;
00068
00069 int m_refRat;
00070 int m_nComp;
00071
00072 DisjointBoxLayout m_dblCoFi;
00073 DisjointBoxLayout m_dblCoar;
00074 DisjointBoxLayout m_dblFine;
00075 LevelData<BaseFab<int> > m_bufCoFi;
00076 };
00077
00078 #include "NamespaceFooter.H"
00079 #endif