00001 #ifdef CH_LANG_CC
00002
00003
00004
00005
00006
00007
00008
00009 #endif
00010
00011
00012
00013 #ifndef _FACEITERATOR_H_
00014 #define _FACEITERATOR_H_
00015
00016 #include "IntVect.H"
00017 #include "FaceIndex.H"
00018 #include "IntVectSet.H"
00019 #include "Vector.H"
00020 #include "NamespaceHeader.H"
00021 class EBGraph;
00022
00023
00024
00025
00026
00027 class FaceStop
00028 {
00029 public:
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045 enum WhichFaces
00046 {
00047 Invalid=-1,
00048 SurroundingWithBoundary=0,
00049 SurroundingNoBoundary=1,
00050 HiWithBoundary,
00051 LoWithBoundary,
00052 HiNoBoundary,
00053 LoNoBoundary,
00054 LoBoundaryOnly,
00055 HiBoundaryOnly,
00056 AllBoundaryOnly,
00057 NUMTYPES
00058 };
00059 };
00060
00061
00062
00063
00064
00065
00066
00067 class FaceIterator
00068 {
00069 public:
00070
00071
00072 FaceIterator(const IntVectSet& a_ivs, const EBGraph& a_ebgraph,
00073 int a_direction, const FaceStop::WhichFaces& a_location);
00074
00075
00076 FaceIterator();
00077
00078
00079
00080
00081
00082
00083
00084
00085 ~FaceIterator();
00086
00087
00088
00089 void define(const IntVectSet& a_ivs, const EBGraph& a_ebgraph,
00090 int a_direction, const FaceStop::WhichFaces& a_location);
00091
00092
00093 void reset();
00094
00095
00096 void operator++();
00097
00098
00099 const FaceIndex& operator() () const;
00100
00101
00102 bool ok() const;
00103
00104
00105 bool isDefined() const;
00106
00107
00108 const Vector<FaceIndex>& getVector() const;
00109
00110 private:
00111
00112
00113
00114
00115 void doDefine(const IntVectSet& a_ivs, const EBGraph& a_ebgraph,
00116 int a_direction, const FaceStop::WhichFaces& a_location);
00117
00118 bool m_isDefined;
00119 Vector<FaceIndex> m_faces;
00120 int m_iface;
00121 int m_direction;
00122
00123
00124 };
00125
00126 #include "NamespaceFooter.H"
00127 #endif