aboutsummaryrefslogtreecommitdiff
path: root/src/include/pugh.h
diff options
context:
space:
mode:
authorgoodale <goodale@b61c5cb5-eaca-4651-9a7a-d64986f99364>1999-04-10 23:00:49 +0000
committergoodale <goodale@b61c5cb5-eaca-4651-9a7a-d64986f99364>1999-04-10 23:00:49 +0000
commit2b91ec90d5bf417798398b0f4ee5acced2b2650c (patch)
tree1eb43c69a53a44f89d3babb56a2562557ffccba5 /src/include/pugh.h
parent45fa4d731548bc787ede6e3bc08892da665cfbfc (diff)
Removed the #ifdef 0ed out sections of code.
Commented out #include of pughDriver.h since the whole of that file is #ifdef 0ed out. Tom git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@36 b61c5cb5-eaca-4651-9a7a-d64986f99364
Diffstat (limited to 'src/include/pugh.h')
-rw-r--r--src/include/pugh.h81
1 files changed, 7 insertions, 74 deletions
diff --git a/src/include/pugh.h b/src/include/pugh.h
index fd5205f..f4d1ef9 100644
--- a/src/include/pugh.h
+++ b/src/include/pugh.h
@@ -11,6 +11,9 @@
@version $Id$
@@*/
+#ifndef _PUGH_H_
+#define _PUGH_H_
+
/*
#include <stdio.h>
#include <stdlib.h>
@@ -23,6 +26,7 @@
/* include the system dependent defines */
#include "config.h"
+/* FIXME */
/* 3 ways up shutting down: */
/*
#define STOP cshutdown(0);
@@ -53,27 +57,6 @@ void cactus_free(void *);
#include "mpi.h"
#endif
-#if 0
-/*** FIXME ***/
-/* these includes should go into thorn_IO */
-#ifdef HDF
-#include "hdf.h"
-#endif
-
-#ifdef IEEEIO
-#include "IEEEIO.h"
-#endif
-
-#ifdef Panda_IO
-#include "PandaIO.h"
-#endif
-#endif
-
-#ifdef TCP
-#include "TCP++/DataConnection.h"
-#include "TCP++/CommandProcessor.h"
-#endif
-
/* Handle precision */
#ifdef SINGLE_PRECISION
#define PUGH_MPI_TYPE MPI_FLOAT
@@ -83,55 +66,11 @@ void cactus_free(void *);
#include "pugh_constants.h"
-#ifdef 0
-/* We need to include active thorns here so that the thorns can
- modify the grid function and grid hierarchy (as box in box does).
- */
-#include "pughActiveThorns.h"
-
-#ifdef THORN_BOXINBOX
-#include "AMRwriter.h"
-#endif
-
-#endif
-
#include "pGF.h"
#include "pGArray.h"
#include "pGH.h"
-#ifdef 0
-/* Timing stuff */
-#include "pughTimers.h"
-
-#include "pughProtos.h"
-
-
-
-#ifndef WIN32
-#define BOLDON "\033[1m"
-#define BOLDOFF "\033[0m"
-#else
-#define BOLDON ""
-#define BOLDOFF ""
-#endif
-
-#if (defined(RS6000) || defined(SPX)||defined(HP))
-#define FORTRAN_NAME(x,y,z) z
-#else
-#if (defined(nCUBE2) || defined(CRAYC90) || defined(CRAYT3D) || defined (CRAYT3E))
-#define FORTRAN_NAME(x,y,z) y
-#else
-#if (defined(WIN32))
-#define FORTRAN_NAME(x,y,z) y
-#else
-#define FORTRAN_NAME(x,y,z) x
-#endif
-#endif
-#endif
-
-#endif /*0*/
-
#ifdef MPI
#define CACTUS_MPI_ERROR(xf) do {int errcode; \
@@ -149,14 +88,8 @@ void cactus_free(void *);
#endif
+/*
#include "pughDriver.h"
+*/
-#ifdef 0
-/* Runtime function repository */
-#include "rfr.h"
-
-/* Scalar Manipulation Functions. */
-
-#include "CactusScalarProtos.h"
-
-#endif
+#endif /* defined _PUGH_H_ */