aboutsummaryrefslogtreecommitdiff
path: root/src/include/pGH.h
diff options
context:
space:
mode:
authorgoodale <goodale@b61c5cb5-eaca-4651-9a7a-d64986f99364>2000-02-17 17:38:50 +0000
committergoodale <goodale@b61c5cb5-eaca-4651-9a7a-d64986f99364>2000-02-17 17:38:50 +0000
commitc06576a3bcd5cace72592c6041e6fb2827ffbff6 (patch)
tree5565cc938c0841bcf8372b15496b72b6b98b221f /src/include/pGH.h
parent539cd2636da010382f41c9ff1ba237ec080e5341 (diff)
Untabified.
Got rid of redundant file. Did some formatting changes in line with the coding guidelines. Tom git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@164 b61c5cb5-eaca-4651-9a7a-d64986f99364
Diffstat (limited to 'src/include/pGH.h')
-rw-r--r--src/include/pGH.h54
1 files changed, 27 insertions, 27 deletions
diff --git a/src/include/pGH.h b/src/include/pGH.h
index 91aae1d..c27fa35 100644
--- a/src/include/pGH.h
+++ b/src/include/pGH.h
@@ -23,7 +23,7 @@
@hauthor Thomas Radke @hdate 30 Mar 1999
@desc Added sync_verbose and comm_time
@endhistory
- @version $Id$
+ @version $Header$
@@*/
#include "pugh_constants.h"
@@ -41,54 +41,54 @@ typedef struct PGH
int dim; /* The dimension of the GH */
/* Size of the processor group */
- int nprocs; /* Number of processors */
- int myproc; /* My processor */
- int *nproc; /* Processor topology */
+ int nprocs; /* Number of processors */
+ int myproc; /* My processor */
+ int *nproc; /* Processor topology */
int commmodel; /* Comm model is PUGH_ALLOCATEDBUFFERS */
/* or PUGH_DERIVEDTYPES. Currently unused */
/* Size of the problems */
- int nvariables; /* Number of Grid variables */
- void ***variables; /* Pointers to them */
- int *nsize; /* Physical size of the Problem */
- int *nghostzones; /* Width of ghost zone */
+ int nvariables; /* Number of Grid variables */
+ void ***variables; /* Pointers to them */
+ int *nsize; /* Physical size of the Problem */
+ int *nghostzones; /* Width of ghost zone */
/* What time level we're on */
int timelevel;
/* Processor group layouts */
- CCTK_REAL maxskew; /* Maximum point skew */
- int periodic; /* Is the system periodic? */
- int **lb; /* Lower bound (nprocs X 3) for each proc */
- int **ub; /* Upper bound (same sizes) */
- int *lnsize; /* Size on this processor */
- int npoints; /* LOCAL number of points on this proc. */
- int *rnpoints; /* Number of points on each proc */
- int **rnsize; /* [#points on a proc][in each dir] */
- int **neighbors; /* Neighbours (proc num) on each side */
+ CCTK_REAL maxskew; /* Maximum point skew */
+ int periodic; /* Is the system periodic? */
+ int **lb; /* Lower bound (nprocs X 3) for each proc */
+ int **ub; /* Upper bound (same sizes) */
+ int *lnsize; /* Size on this processor */
+ int npoints; /* LOCAL number of points on this proc. */
+ int *rnpoints; /* Number of points on each proc */
+ int **rnsize; /* [#points on a proc][in each dir] */
+ int **neighbors; /* Neighbours (proc num) on each side */
/* [nprocs x 2 * dim] */
int stagger; /* Is staggering turned on? */
int forceSync; /* force synchronisation of GFs with storage */
/* Ghosts and overlaps. */
- int *ownership[PUGH_NSTAGGER][2];
+ int *ownership[PUGH_NSTAGGER][2];
/* The box owned in each direction. */
/* [stagger][min/max][dir] */
-
- int **ghosts[PUGH_NSTAGGER][2];
+
+ int **ghosts[PUGH_NSTAGGER][2];
/* The ghost zones on each face. */
/* [stagger][min/max][face][dir] */
-
- int **overlap[PUGH_NSTAGGER][2];
+
+ int **overlap[PUGH_NSTAGGER][2];
/* The overlap region owned on each face. */
- /* [stagger][min/max][face][ijk] */
-
+ /* [stagger][min/max][face][ijk] */
+
/* Coordinate information */
- CCTK_REAL cx0, cy0, cz0; /* Origin of our system */
- CCTK_REAL dx0, dy0, dz0, dt0; /* Delta of our system */
- CCTK_REAL lx0, ly0, lz0; /* Processor-Local coordinate origins */
+ CCTK_REAL cx0, cy0, cz0; /* Origin of our system */
+ CCTK_REAL dx0, dy0, dz0, dt0; /* Delta of our system */
+ CCTK_REAL lx0, ly0, lz0; /* Processor-Local coordinate origins */
CCTK_REAL phys_time; /* physical time */
int GHiteration; /* iteration number on processor */