aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetSlab/src/slab.hh
blob: a6259236d2ab5bf5424f5789c7f928fa181712c6 (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
// $Header: /home/eschnett/C/carpet/Carpet/Carpet/CarpetSlab/src/slab.hh,v 1.2 2003/11/05 16:18:39 schnetter Exp $

#ifndef CARPETSLAB_HH
#define CARPETSLAB_HH

#include "cctk.h"

#include "slab.h"

namespace CarpetSlab {
  
  // Non-standard interface -- don't use
  void FillSlab (const cGH* const cgh,
		 const int dest_proc,
		 const int n,
		 const int tl,
		 const int hdim,
		 const int origin[/*vdim*/],
		 const int dirs[/*hdim*/],
		 const int stride[/*hdim*/],
		 const int length[/*hdim*/],
                 void* const hdata);
  
  // Non-standard interface -- don't use
  void* GetSlab (const cGH* const cgh,
		 const int dest_proc,
		 const int n,
		 const int tl,
		 const int hdim,
		 const int origin[/*vdim*/],
		 const int dirs[/*hdim*/],
		 const int stride[/*hdim*/],
		 const int length[/*hdim*/]);
  
} // namespace CarpetSlab

#endif // !defined(CARPETSLAB_HH)