00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032 #ifndef _Mask_H_
00033 #define _Mask_H_
00034
00035 #include "BaseFab.H"
00036 #include "BoxLayout.H"
00037 #include "LevelData.H"
00038 #include "ProblemDomain.H"
00039
00040
00041 class Mask
00042 {
00043
00044 public:
00045 enum cellType {maskCovered = -2, maskPhysical = -1, maskCopy = 0,
00046 maskCoarse = 1};
00047
00048
00049 void buildMask(BaseFab<int>& a_mask,
00050 const ProblemDomain& a_dProblem,
00051 const BoxLayout& a_grids,
00052 const BoxLayout* a_fineGridsPtr=NULL,
00053 int a_nRefFine = -1);
00054
00055 void buildMasks(LevelData<BaseFab <int> >& a_masks,
00056 const ProblemDomain& a_dProblem,
00057 const BoxLayout& a_grids,
00058 const BoxLayout* a_fineGridsPtr=NULL,
00059 int a_nRefFine = -1);
00060
00061
00062 void buildMask(BaseFab<int>& a_mask, const Box& a_dProblem,
00063 const BoxLayout& a_grids,
00064 const BoxLayout* a_fineGridsPtr=NULL,
00065 int a_nRefFine = -1);
00066
00067
00068 void buildMasks(LevelData<BaseFab <int> >& a_masks,
00069 const Box& a_dProblem,
00070 const BoxLayout& a_grids,
00071 const BoxLayout* a_fineGridsPtr=NULL,
00072 int a_nRefFine = -1);
00073
00074 };
00075
00076
00077
00078
00079
00080 #endif
00081
00082