aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlanfer <lanfer@50555cc7-fb31-491a-85db-9a2874240742>1999-10-19 12:24:44 +0000
committerlanfer <lanfer@50555cc7-fb31-491a-85db-9a2874240742>1999-10-19 12:24:44 +0000
commitc95201c2604e2eca00602f9b58232f13026f5686 (patch)
tree3788a0ce9afb4fb747476a8ba3e611775c21e5e3
parent381802dcf45ca575c0a2465fa87dd316461132b8 (diff)
using the new boundary interface with Wavetoy
git-svn-id: http://svn.cactuscode.org/arrangements/CactusWave/WaveToyCXX/trunk@7 50555cc7-fb31-491a-85db-9a2874240742
-rw-r--r--src/WaveToy.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WaveToy.cc b/src/WaveToy.cc
index 45d4eac..cf5b7e0 100644
--- a/src/WaveToy.cc
+++ b/src/WaveToy.cc
@@ -140,11 +140,11 @@ static void WaveToyC_Boundaries(CCTK_CARGUMENTS)
if (CCTK_Equals(bound,"flat"))
{
- ierr = ApplyFlatBC(cctkGH,sw,"wavetoycxx::phi_new");
+ ierr = FlatBCVar(cctkGH,sw,"wavetoycxx::phi_new");
}
else if (CCTK_Equals(bound,"radiation"))
{
- ierr = ApplyRadiativeBC(cctkGH,0,1,sw,"wavetoycxx::phi_new","wavetoy::phi");
+ ierr = RadiativeBCVar(cctkGH,0,1,sw,"wavetoycxx::phi_new","wavetoy::phi");
}
if (ierr < 0)