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
00028
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
00052 bool isDefined() const;
00053
00055
00057 const IntVectSet& getFineIVS() const ;
00058
00060 TensorCFIVS();
00061
00063 ~TensorCFIVS();
00064
00066 TensorCFIVS(
00067 const Box& Domain,
00068 const Box& box_in,
00069 const DisjointBoxLayout& Levboxes,
00070 int Direction,
00071 Side::LoHiSide hiorlo);
00072
00073
00075 TensorCFIVS(
00076 const ProblemDomain& Domain,
00077 const Box& box_in,
00078 const DisjointBoxLayout& Levboxes,
00079 int Direction,
00080 Side::LoHiSide hiorlo);
00081
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
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 TensorCFIVS(const TensorCFIVS& levcfs_in) {};
00101
00102 };
00103 #include "NamespaceFooter.H"
00104 #endif