00001 #ifdef CH_LANG_CC
00002
00003
00004
00005
00006
00007
00008
00009 #endif
00010
00011 #ifndef _TENSORCFIVS_H_
00012 #define _TENSORCFIVS_H_
00013
00014 #include <iostream>
00015 #include <cmath>
00016 #include "SPACE.H"
00017 #include <cstdlib>
00018 #include "REAL.H"
00019 #include "IntVect.H"
00020 #include "Box.H"
00021 #include "LoHiSide.H"
00022 #include "DisjointBoxLayout.H"
00023 #include "IntVectSet.H"
00024 #include "ProblemDomain.H"
00025 #include "NamespaceHeader.H"
00026
00027
00028
00029
00030
00031
00032
00033 class TensorCFIVS
00034 {
00035
00036 private:
00037
00038 protected:
00039
00040 void setDefaultValues();
00041
00042
00043
00044
00045 IntVectSet fiinterp_ivs;
00046
00047 bool isdefined;
00048
00049 public:
00050
00051
00052 bool isDefined() const;
00053
00054
00055
00056
00057 const IntVectSet& getFineIVS() const ;
00058
00059
00060 TensorCFIVS();
00061
00062
00063 ~TensorCFIVS();
00064
00065
00066 TensorCFIVS(
00067 const Box& Domain,
00068 const Box& box_in,
00069 const DisjointBoxLayout& Levboxes,
00070 int Direction,
00071 Side::LoHiSide hiorlo);
00072
00073
00074
00075 TensorCFIVS(
00076 const ProblemDomain& Domain,
00077 const Box& box_in,
00078 const DisjointBoxLayout& Levboxes,
00079 int Direction,
00080 Side::LoHiSide hiorlo);
00081
00082
00083 void define(
00084 const Box& Domain,
00085 const Box& box_in,
00086 const DisjointBoxLayout& fine_boxes,
00087 int Direction,
00088 Side::LoHiSide hiorlo);
00089
00090
00091 void define(
00092 const ProblemDomain& Domain,
00093 const Box& box_in,
00094 const DisjointBoxLayout& fine_boxes,
00095 int Direction,
00096 Side::LoHiSide hiorlo);
00097
00098 private:
00099 void operator= (const TensorCFIVS& levcfs_in)
00100 {
00101 }
00102
00103 TensorCFIVS(const TensorCFIVS& levcfs_in)
00104 {
00105 }
00106 };
00107 #include "NamespaceFooter.H"
00108 #endif