aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetRegrid/src/baselevel.cc
blob: ce4aee1c21f61d1515086547131c6b9b2553cfec (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 const & hh,
                 gh::rexts  & bbsss,
                 gh::rbnds  & obss,
                 gh::rprocs & pss)
  {
    DECLARE_CCTK_PARAMETERS;
    
    assert (refinement_levels == 1);
    
    assert (bbsss.size() == 1);
    
    return 0;
  }
  
} // namespace CarpetRegrid