aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschnetter <schnetter@f69c4107-0314-4c4f-9ad4-17e986b73f4a>2006-05-13 18:57:10 +0000
committerschnetter <schnetter@f69c4107-0314-4c4f-9ad4-17e986b73f4a>2006-05-13 18:57:10 +0000
commit1c6899c25b4b102603dd3096378a71f2b1a6d3f6 (patch)
tree7b661e59e20a855c8672b9dd2085f2581f13072b
parent46bcd68ab59078705cdaeca807ffc734e23aa065 (diff)
Do not inherit from grid. This is not necessary.
Initialise normmask in basegrid instead of initial. Mark it so that it is not checkpointed. git-svn-id: https://svn.cct.lsu.edu/repos/numrel/LSUThorns/SummationByParts/trunk@68 f69c4107-0314-4c4f-9ad4-17e986b73f4a
-rw-r--r--interface.ccl4
-rw-r--r--schedule.ccl2
2 files changed, 3 insertions, 3 deletions
diff --git a/interface.ccl b/interface.ccl
index b05c6fc..4bb3bc0 100644
--- a/interface.ccl
+++ b/interface.ccl
@@ -2,7 +2,7 @@
# $Header$
implements: SummationByParts
-inherits: grid
+#inherits: grid
SUBROUTINE Diff_gf ( CCTK_POINTER_TO_CONST IN cctkGH, \
CCTK_INT IN dir, \
@@ -73,7 +73,7 @@ USES FUNCTION MoLQueryEvolvedRHS
public
-CCTK_REAL normmask TYPE=gf TAGS='tensortypealias="scalar" Prolongation="None"'
+CCTK_REAL normmask TYPE=gf TAGS='tensortypealias="scalar" Prolongation="None" checkpoint="no"'
{
nmask
} "Mask for the norm calculation"
diff --git a/schedule.ccl b/schedule.ccl
index d1c6225..e4c492d 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -4,7 +4,7 @@
# Mask for norms
STORAGE: normmask
-SCHEDULE SBP_SetNormMask AT initial
+SCHEDULE SBP_SetNormMask AT basegrid
{
LANG: Fortran
} "Setup the mask for the calulcation of the norm"