aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetRegrid/src/baselevel.cc
blob: 441ba57bc104b55d84521df03683f2c807ffc8c9 (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
#include <assert.h>

#include "cctk.h"
#include "cctk_Parameters.h"

#include "gh.hh"

#include "carpet.hh"
#include "regrid.hh"



namespace CarpetRegrid {
  
  using namespace std;
  using namespace Carpet;
  
  
  
  int BaseLevel (cGH const * const cctkGH,
                 gh<dim> const & hh,
                 gh<dim>::rexts  & bbsss,
                 gh<dim>::rbnds  & obss,
                 gh<dim>::rprocs & pss)
  {
    DECLARE_CCTK_PARAMETERS;
    
    assert (refinement_levels == 1);
    
    assert (bbsss.size() == 1);
    
    return 0;
  }
  
} // namespace CarpetRegrid