summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-02-02 18:29:52 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-02-02 18:29:52 +0000
commit2d46d392235aa24f3a475e675405e2e355047b87 (patch)
tree69fa8bdf2f0364a6173c55d35902b3b5404dca6a
parentc46237c240d8a63fcb9040d084b4d4d1c10719ea (diff)
Some more comments.
Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@187 17b73243-c579-4c4c-a9d2-2d5706c11dac
-rw-r--r--src/include/flesh.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/include/flesh.h b/src/include/flesh.h
index 41104ffe..900ed1a8 100644
--- a/src/include/flesh.h
+++ b/src/include/flesh.h
@@ -38,19 +38,25 @@ typedef struct
int *lower_bound;
int *upper_bound;
+ /* The bounding box - 1 => a real boundary, 0 => a local grid boundary. */
/* bbox[2*dim] */
int *bbox;
+ /* The refinement factor over the top level grid. */
int levfac;
- void *rfr_top;
-
/* data[var_num][xyz]*/
void **data;
+ /* The extension array */
void *extensions;
+ /* All the group data for this GH (storage, comm, etc. */
cGHGroupData *GroupData;
+
+ /* Rfr tree for this GH. */
+ void *rfr_top;
+
} cGH;
typedef struct