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
00033 #ifndef NODEMASKNOOPSMOOTHER_H
00034 #define NODEMASKNOOPSMOOTHER_H
00035
00036 #include <iostream>
00037 #include <math.h>
00038 #include <assert.h>
00039 #include <stdlib.h>
00040 #include "REAL.H"
00041 #include "IntVect.H"
00042 #include "Box.H"
00043 #include "DisjointBoxLayout.H"
00044 #include "LevelData.H"
00045 #include "NodeFArrayBox.H"
00046 #include "ProblemDomain.H"
00047 #include "NodeMaskBaseBottomSmoother.H"
00048
00050
00053 class NodeMaskNoOpSmoother : public NodeMaskBaseBottomSmoother
00054 {
00055
00056 public:
00057
00059
00061
00063 NodeMaskNoOpSmoother();
00064
00066
00068 virtual ~NodeMaskNoOpSmoother();
00069
00071
00073 virtual NodeMaskBaseBottomSmoother* new_bottomSmoother() const;
00074
00076
00079 virtual void doBottomSmooth(LevelData<NodeFArrayBox>& a_phi,
00080 const LevelData<NodeFArrayBox>& a_rhs,
00081 const BoxLayoutData< BaseFab<int> >& a_mask,
00082 NodeMaskLevelOp* a_levelop_ptr);
00083 };
00084
00085 #endif
00086
00087
00088
00089