summaryrefslogtreecommitdiff
path: root/src/include/cGH.h
diff options
context:
space:
mode:
authortradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2002-04-18 10:46:49 +0000
committertradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2002-04-18 10:46:49 +0000
commit2d9ba9c9d1083df4499fc2f9cca8a01b1aa2281c (patch)
tree56f5ce5763ea331d38bd765a1597b61787bc53c2 /src/include/cGH.h
parent8e45ad081c9a22cd994878a66a949966dbb44ac5 (diff)
Added an identify string to the cGH which must be filled out by the driver.
It should label individual cGH's (eg. when doing convergence testing). I/O methods will it then use it to construct output filenames. git-svn-id: http://svn.cactuscode.org/flesh/trunk@2726 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/include/cGH.h')
-rw-r--r--src/include/cGH.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/include/cGH.h b/src/include/cGH.h
index 50d1f32c..f8a4a68c 100644
--- a/src/include/cGH.h
+++ b/src/include/cGH.h
@@ -62,6 +62,10 @@ typedef struct
/* The coordinate time */
CCTK_REAL cctk_time;
+ /* An identifier string for this hierarchy
+ (used to construct names for output files) */
+ const char *identity;
+
/* data[var_num][TIMELEVEL][xyz]*/
/* TIMELEVEL I believe, xyz is linear */
void ***data;