aboutsummaryrefslogtreecommitdiff
path: root/Carpet/Carpet/src/CarpetParamCheck.cc
diff options
context:
space:
mode:
authorschnetter <>2001-12-09 15:41:00 +0000
committerschnetter <>2001-12-09 15:41:00 +0000
commit2082bb5099476279b53877b27d9df295ab62ca2f (patch)
tree9bdf6bfd5da8d4dbfb406fbef0d3648502066092 /Carpet/Carpet/src/CarpetParamCheck.cc
parente48339ca013b6844d31c69b8ff0fde1b46ef1d96 (diff)
Added more bones to skeleton of CarpetParamCheck.
Added more bones to skeleton of CarpetParamCheck. Changed handling of interpolation orders; they are now stored in the grid functions and don't have to be passed around. Setting spatial prolongation order to zero if there are no ghost zones. Setting temporal prolongation order to zero if there is only one time level. Added prolongating the boundaries of the fine grid after restricting to the coarse grid. Restricting the coarse grid changes the coarse grid, hence changes the boundary of the fine grid. darcs-hash:20011209154152-07bb3-0ff824b0462b54926fbe0a8f5fa075dff5fecbb5.gz
Diffstat (limited to 'Carpet/Carpet/src/CarpetParamCheck.cc')
-rw-r--r--Carpet/Carpet/src/CarpetParamCheck.cc9
1 files changed, 7 insertions, 2 deletions
diff --git a/Carpet/Carpet/src/CarpetParamCheck.cc b/Carpet/Carpet/src/CarpetParamCheck.cc
index cea4d186b..c948e79ab 100644
--- a/Carpet/Carpet/src/CarpetParamCheck.cc
+++ b/Carpet/Carpet/src/CarpetParamCheck.cc
@@ -1,11 +1,14 @@
#include <assert.h>
+#include <iostream.h>
#include <stdlib.h>
#include "cctk.h"
+#include "cctk_Arguments.h"
+#include "cctk_Parameters.h"
#include "carpet.hh"
-static const char* rcsid = "$Header: /home/eschnett/C/carpet/Carpet/Carpet/Carpet/src/CarpetParamCheck.cc,v 1.1 2001/12/05 17:34:54 schnetter Exp $";
+static const char* rcsid = "$Header: /home/eschnett/C/carpet/Carpet/Carpet/Carpet/src/CarpetParamCheck.cc,v 1.2 2001/12/09 16:41:52 schnetter Exp $";
@@ -13,8 +16,10 @@ namespace Carpet {
using namespace std;
- int CarpetParamCheck()
+ int CarpetParamCheck (CCTK_ARGUMENTS)
{
+ DECLARE_CCTK_ARGUMENTS;
+ DECLARE_CCTK_PARAMETERS;
return 0;
}