From b79385571170c2b84c96da7b8b60de0d2ac1f27f Mon Sep 17 00:00:00 2001 From: goodale Date: Tue, 9 Feb 1999 17:39:33 +0000 Subject: Started filling in the group storage stuff. Tom git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@8 b61c5cb5-eaca-4651-9a7a-d64986f99364 --- src/SetupGroup.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/SetupGroup.c') diff --git a/src/SetupGroup.c b/src/SetupGroup.c index 4290f5b..bdeed52 100644 --- a/src/SetupGroup.c +++ b/src/SetupGroup.c @@ -19,7 +19,7 @@ static char *rcisd = "$Header$"; -pGF *SetupPGF(pGH *GH, const char *name, int dim); +pGF *SetupPGF(pGH *GH, const char *name, int dim, int varsize); /*@@ @routine pugh_SetupGroup @@ -35,7 +35,7 @@ pGF *SetupPGF(pGH *GH, const char *name, int dim); @endhistory @@*/ -int pugh_SetupGroup(pGH *newGH, int gtype, int vtype, int dim, int n_variables) +int pugh_SetupGroup(pGH *newGH, int gtype, int vtype, int dim, int n_variables, int var_size) { int returncode; switch(gtype) @@ -148,7 +148,7 @@ int pugh_SetupGFGroup(pGH *newGH, int vtype, int dim, int n_variables) for(variable = 0; variable < n_variables; variable++) { - newGH->variables[newGH->nvariables] = SetupPGF(newGH, CCTK_GetVarName(n_variables), dim); + newGH->variables[newGH->nvariables] = SetupPGF(newGH, CCTK_GetVarName(n_variables), dim, var_size); } } -- cgit v1.2.3