aboutsummaryrefslogtreecommitdiff
path: root/src/ioASCIIGH.h
diff options
context:
space:
mode:
authorallen <allen@94b1c47f-dcfd-45ef-a468-0854c0e9e350>2000-07-12 11:40:54 +0000
committerallen <allen@94b1c47f-dcfd-45ef-a468-0854c0e9e350>2000-07-12 11:40:54 +0000
commiteed305f5b914bc8849aeecd4f2bb66fa56f6fafb (patch)
tree84a15abeb5709b8e60f32b0fff5f52f2c9f482bc /src/ioASCIIGH.h
parent41777d3027a7d8133aef387b067cb8e53250af6c (diff)
New parameters for choosing lines and slices
New CCTK functions for coordinates WARNING: Different default behaviour now for lines and slices from a full grid git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOASCII/trunk@11 94b1c47f-dcfd-45ef-a468-0854c0e9e350
Diffstat (limited to 'src/ioASCIIGH.h')
-rw-r--r--src/ioASCIIGH.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/ioASCIIGH.h b/src/ioASCIIGH.h
index 8593022..e2235f7 100644
--- a/src/ioASCIIGH.h
+++ b/src/ioASCIIGH.h
@@ -42,8 +42,12 @@ typedef struct IOASCIIGH {
pNamedData *fileList_2D;
/* for 1d lines, we define the index where to start the line:
- spxyz[XYZdirection][xyzstart_index] */
- int spxyz[3][3];
+ spxyz[maxdim][XYZdirection][xyzstart_index] */
+ int ***spxyz;
+
+ /* for 2d planes, we define the index where to locate the plane
+ sp2xyz[maxdim][perpendicular direction] */
+ int **sp2xyz;
} asciiioGH;