summaryrefslogtreecommitdiff
path: root/src/include/cctki_Groups.h
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-01-25 10:05:56 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-01-25 10:05:56 +0000
commita7f55c01ae632147f667efbbfdaaa509e2be01ed (patch)
tree6ad9034c4dcbb7590c31bcb66169991679a09a93 /src/include/cctki_Groups.h
parent29bfcbaba503af41067f6ea16f506d1d0190bd06 (diff)
CCTK function name changes
git-svn-id: http://svn.cactuscode.org/flesh/trunk@1297 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/include/cctki_Groups.h')
-rw-r--r--src/include/cctki_Groups.h42
1 files changed, 16 insertions, 26 deletions
diff --git a/src/include/cctki_Groups.h b/src/include/cctki_Groups.h
index 07625fc7..6cc215f2 100644
--- a/src/include/cctki_Groups.h
+++ b/src/include/cctki_Groups.h
@@ -17,35 +17,25 @@
extern "C" {
#endif
-int CCTKi_CreateGroup(const char *gname, const char *thorn, const char *imp,
- const char *gtype,
- const char *vtype,
- const char *gscope,
- int dimension,
- int ntimelevels,
- const char *stype,
- const char *size,
- int n_variables,
- ...);
-
-int CCTKi_ParseStaggerString(int dim,
- const char *imp,
- const char *gname,
- const char *stype);
+void CCTKi_DumpGroupInfo(void);
+
+int CCTKi_CreateGroup
+ (const char* gname,
+ const char* thorn,
+ const char* imp,
+ const char* gtype,
+ const char* vtype,
+ const char* gscope,
+ int dimension,
+ int ntimelevels,
+ const char* stype,
+ const char* size,
+ const char* ghostsize,
+ int n_variables,
+ ...);
#ifdef __cplusplus
}
#endif
-
-/* Group Types */
-
-#define GROUP_SCALAR 1
-#define GROUP_GF 2
-#define GROUP_ARRAY 3
-
-#define GROUP_PRIVATE 1
-#define GROUP_PROTECTED 2
-#define GROUP_PUBLIC 3
-
#endif