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 #ifndef _GEOMETRYSERVICE_H_
00030 #define _GEOMETRYSERVICE_H_
00031
00032 #include <cmath>
00033 #include <cstdlib>
00034 #include "REAL.H"
00035 #include "LoHiSide.H"
00036 #include "EBISBox.H"
00037 #include "VolIndex.H"
00038 #include "FaceIndex.H"
00039 #include "RealVect.H"
00040 #include "Box.H"
00041 #include "IntVect.H"
00042 #include "IrregNode.H"
00043
00045
00049 class GeometryService
00050 {
00051 public:
00052 GeometryService();
00053
00054 virtual ~GeometryService();
00055
00057
00061 virtual bool isRegular(const Box& a_region,
00062 const Box& a_domain,
00063 const RealVect& a_origin,
00064 const Real& a_dx) const = 0;
00065
00067
00071 virtual bool isCovered(const Box& a_region,
00072 const Box& a_domain,
00073 const RealVect& a_origin,
00074 const Real& a_dx) const = 0;
00075
00077
00086 virtual void fillGraph(BaseFab<int>& a_regIrregCovered,
00087 Vector<IrregNode>& a_nodes,
00088 const Box& a_validRegion,
00089 const Box& a_ghostRegion,
00090 const Box& a_domain,
00091 const RealVect& a_origin,
00092 const Real& a_dx) const = 0;
00093
00094 protected:
00095
00096 };
00097 #endif