aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetLib/src/gf.cc
blob: 0053d731e040f3fb8ec3d7a2f479e8c98b5d33aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#include <cassert>

#include "cctk.h"

#include "defs.hh"

#include "gf.hh"

using namespace std;



// Constructors
template<class T,int D>
gf<T,D>::gf (const int varindex, const operator_type transport_operator,
             th<D>& t, dh<D>& d,
	     const int tmin, const int tmax, const int prolongation_order_time,
             const int vectorlength, const int vectorindex,
             gf* const vectorleader)
  : ggf<D>(varindex, transport_operator,
           t, d, tmin, tmax, prolongation_order_time,
           vectorlength, vectorindex, vectorleader)
{
  // this->recompose ();
  this->recompose_crop ();
  for (int rl=0; rl<this->h.reflevels(); ++rl) {
    this->recompose_allocate (rl);
#if 0
    for (comm_state<D> state; !state.done(); state.step()) {
      this->recompose_fill (state, rl, false);
    }
#endif
    this->recompose_free (rl);
#if 0
    for (comm_state<D> state; !state.done(); state.step()) {
      this->recompose_bnd_prolongate (state, rl, false);
    }
    for (comm_state<D> state; !state.done(); state.step()) {
      this->recompose_sync (state, rl, false);
    }
#endif
  } // for rl
}

// Destructors
template<class T,int D>
gf<T,D>::~gf () { }



// Access to the data
template<class T,int D>
const data<T,D>* gf<T,D>::operator() (int tl, int rl, int c, int ml) const {
  assert (tl>=this->tmin && tl<=this->tmax);
  assert (rl>=0 && rl<this->h.reflevels());
  assert (c>=0 && c<this->h.components(rl));
  assert (ml>=0 && ml<this->h.mglevels(rl,c));
  return (const data<T,D>*)this->storage.at(tl-this->tmin).at(rl).at(c).at(ml);
}

template<class T,int D>
data<T,D>* gf<T,D>::operator() (int tl, int rl, int c, int ml) {
  assert (tl>=this->tmin && tl<=this->tmax);
  assert (rl>=0 && rl<this->h.reflevels());
  assert (c>=0 && c<this->h.components(rl));
  assert (ml>=0 && ml<this->h.mglevels(rl,c));
  return (data<T,D>*)this->storage.at(tl-this->tmin).at(rl).at(c).at(ml);
}



// Output
template<class T,int D>
ostream& gf<T,D>::output (ostream& os) const {
  T Tdummy;
  os << "gf<" << typestring(Tdummy) << "," << D << ">:"
     << this->varindex << "[" << CCTK_VarName(this->varindex) << "],"
     << "dt=[" << this->tmin << ":" << this->tmax<< "]";
  return os;
}



#define INSTANTIATE(T)				\
template class gf<T,3>;

#include "instantiate"

#undef INSTANTIATE