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 NODEMASKBASEBOTTOMSMOOTHER_H
00033 #define NODEMASKBASEBOTTOMSMOOTHER_H
00034
00035 #include <iostream>
00036 #include <math.h>
00037 #include <assert.h>
00038 #include <stdlib.h>
00039 #include "REAL.H"
00040 #include "IntVect.H"
00041 #include "Box.H"
00042 #include "DisjointBoxLayout.H"
00043 #include "LevelData.H"
00044 #include "NodeFArrayBox.H"
00045 #include "ProblemDomain.H"
00046 #include "NodeMaskLevelOp.H"
00047
00049
00056 class NodeMaskBaseBottomSmoother
00057 {
00058
00059 public:
00060
00062
00064
00066 NodeMaskBaseBottomSmoother() {};
00067
00069
00071 virtual ~NodeMaskBaseBottomSmoother() {};
00072
00074
00076 virtual NodeMaskBaseBottomSmoother* new_bottomSmoother() const = 0;
00077
00079
00081
00091 virtual void doBottomSmooth(LevelData<NodeFArrayBox>& a_phi,
00092 const LevelData<NodeFArrayBox>& a_rhs,
00093 const BoxLayoutData< BaseFab<int> >& a_mask,
00094 NodeMaskLevelOp* a_levelop_ptr) = 0;
00095
00096 };
00097
00098 #endif