aboutsummaryrefslogtreecommitdiff
path: root/src/include/pugh.h
diff options
context:
space:
mode:
authortradke <tradke@b61c5cb5-eaca-4651-9a7a-d64986f99364>1999-03-30 14:23:41 +0000
committertradke <tradke@b61c5cb5-eaca-4651-9a7a-d64986f99364>1999-03-30 14:23:41 +0000
commit731828f307c92b9c334c25b29b468e872205241b (patch)
tree93c645c2ffdfe3ac2466d585ea31a19aa378f58c /src/include/pugh.h
parentf1d628cadca3332b7f777f51c496e26b112a585c (diff)
removed includes of hdf.h, IEEEIO.h, and PandaIO.h (should go into thorn_IO)
added PUGH_MPI_TYPE define removed re-typedef for Double (included config.h instead) git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@25 b61c5cb5-eaca-4651-9a7a-d64986f99364
Diffstat (limited to 'src/include/pugh.h')
-rw-r--r--src/include/pugh.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/include/pugh.h b/src/include/pugh.h
index 9675da9..fd5205f 100644
--- a/src/include/pugh.h
+++ b/src/include/pugh.h
@@ -20,6 +20,9 @@
#include <assert.h>
*/
+/* include the system dependent defines */
+#include "config.h"
+
/* 3 ways up shutting down: */
/*
#define STOP cshutdown(0);
@@ -50,6 +53,9 @@ void cactus_free(void *);
#include "mpi.h"
#endif
+#if 0
+/*** FIXME ***/
+/* these includes should go into thorn_IO */
#ifdef HDF
#include "hdf.h"
#endif
@@ -61,21 +67,18 @@ void cactus_free(void *);
#ifdef Panda_IO
#include "PandaIO.h"
#endif
+#endif
#ifdef TCP
#include "TCP++/DataConnection.h"
#include "TCP++/CommandProcessor.h"
#endif
-#ifdef 0
/* Handle precision */
#ifdef SINGLE_PRECISION
#define PUGH_MPI_TYPE MPI_FLOAT
-typedef float Double;
#else
#define PUGH_MPI_TYPE MPI_DOUBLE
-typedef double Double;
-#endif
#endif
#include "pugh_constants.h"