aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorallen <allen@38c3d835-c875-442e-b0fe-21c19ce1d001>2000-07-12 12:50:05 +0000
committerallen <allen@38c3d835-c875-442e-b0fe-21c19ce1d001>2000-07-12 12:50:05 +0000
commit8a7bc7e5c0e17618ee50c59d52dad7b6bd32db36 (patch)
treeb174953a46cfad5a7c081399c187d7a45dcd1e51 /src
parent93acab55205a243539bb1394ab4b98ac744a9181 (diff)
Beta 8 name changes
git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGHIO/IOPanda/trunk@10 38c3d835-c875-442e-b0fe-21c19ce1d001
Diffstat (limited to 'src')
-rw-r--r--src/GHExtension.c2
-rw-r--r--src/Output3D.c10
2 files changed, 6 insertions, 6 deletions
diff --git a/src/GHExtension.c b/src/GHExtension.c
index cdc4859..cfac94b 100644
--- a/src/GHExtension.c
+++ b/src/GHExtension.c
@@ -55,7 +55,7 @@ int IOPanda_InitGH (cGH *GH)
if (out3D_every > 0)
myGH->out3D_every = out3D_every;
- ParseVarsForOutput (out3D_vars, myGH->do_out3D);
+ IOUtil_ParseVarsForOutput (out3D_vars, myGH->do_out3D);
/* Deal with the output directories */
/* Check whether "outdir3D" was set.
diff --git a/src/Output3D.c b/src/Output3D.c
index c7ef26a..ad12776 100644
--- a/src/Output3D.c
+++ b/src/Output3D.c
@@ -395,11 +395,11 @@ void IOPanda_AddCommonAttributes (cGH *GH, int index, int timelevel,
d3_to_IO [1] = CCTK_CoordOrigin ("y");
d3_to_IO [2] = CCTK_CoordOrigin ("z");
Panda_WriteAttribute (fname, "origin", FLOAT64,3,d3_to_IO);
- CCTK_CoordRange (GH, &d3_to_IO [0], &d3_to_IO [3], "x");
- CCTK_CoordRange (GH, &d3_to_IO [1], &d3_to_IO [4], "y");
- CCTK_CoordRange (GH, &d3_to_IO [2], &d3_to_IO [5], "z");
- Panda_WriteAttribute (fname, "min_ext",FLOAT64,3,d3_to_IO);
- Panda_WriteAttribute (fname, "max_ext",FLOAT64, 3,d3_to_IO+3);
+ CCTK_CoordRange (GH, &d3_to_IO [0], &d3_to_IO [3], -1, "x", "cart3d");
+ CCTK_CoordRange (GH, &d3_to_IO [1], &d3_to_IO [4], -1, "y", "cart3d");
+ CCTK_CoordRange (GH, &d3_to_IO [2], &d3_to_IO [5], -1, "z", "cart3d");
+ Panda_WriteAttribute (fname, "min_ext", FLOAT64, 3, d3_to_IO);
+ Panda_WriteAttribute (fname, "max_ext", FLOAT64, 3, d3_to_IO+3);
/* FIXME: dimension */
d3_to_IO [0] = GH->cctk_delta_space [0] * ioUtilGH->downsample[0];