aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorallen <allen@bfcf8e34-485d-4d46-a995-1fd6fa6fb178>2001-05-21 22:01:02 +0000
committerallen <allen@bfcf8e34-485d-4d46-a995-1fd6fa6fb178>2001-05-21 22:01:02 +0000
commit1aeea4170532a2b2f1c6cc5f030fb890af614cbd (patch)
treec488d9867d37b4e04033800489f5118fb2a6ea69
parent507de6c408650794864d2c27eab19137dec439f3 (diff)
CCTK_FILEVERSION
git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGHIO/IsoSurfacer/trunk@48 bfcf8e34-485d-4d46-a995-1fd6fa6fb178
-rw-r--r--src/IsoSurfacer.c4
-rw-r--r--src/IsoSurfacerInit.c3
-rw-r--r--src/NuSurfacer.c3
-rw-r--r--src/Startup.c3
4 files changed, 13 insertions, 0 deletions
diff --git a/src/IsoSurfacer.c b/src/IsoSurfacer.c
index a5837c6..6da43c7 100644
--- a/src/IsoSurfacer.c
+++ b/src/IsoSurfacer.c
@@ -27,6 +27,10 @@
#include "IsoSurfacerGH.h"
#include "IsoSurfacerInit.h"
#include "NuSurfacer.h"
+
+static const char *rcsid = "$Id$";
+CCTK_FILEVERSION(CactusPUGHIO_IsoSurfacer_IsoSurfacer_c)
+
/* *******Some Macro Definitions *************/
#define NEW(n,what) ((what*)malloc((n)*sizeof(what)))
#define REALLOC(object,n,what) \
diff --git a/src/IsoSurfacerInit.c b/src/IsoSurfacerInit.c
index c82fcfe..c0d4329 100644
--- a/src/IsoSurfacerInit.c
+++ b/src/IsoSurfacerInit.c
@@ -14,6 +14,9 @@
#include "CactusPUGH/PUGH/src/include/pugh.h"
#include "IsoSurfacerInit.h"
+static const char *rcsid = "$Id$";
+CCTK_FILEVERSION(CactusPUGHIO_IsoSurfacer_IsoSurfacerInit_c)
+
/***************************************************************/
void *IsoSurfacer_SetupGH (tFleshConfig *config,
int convergence_level,
diff --git a/src/NuSurfacer.c b/src/NuSurfacer.c
index c38c805..f7a0870 100644
--- a/src/NuSurfacer.c
+++ b/src/NuSurfacer.c
@@ -9,6 +9,9 @@
#include "CactusPUGH/PUGH/src/include/pugh.h"
#include "NuSurfacer.h"
+static const char *rcsid = "$Id$";
+CCTK_FILEVERSION(CactusPUGHIO_IsoSurfacer_NuSurfacer_c)
+
typedef int EDGE_LIST;
typedef struct {
EDGE_LIST edges[16];
diff --git a/src/Startup.c b/src/Startup.c
index 75635c4..78fb187 100644
--- a/src/Startup.c
+++ b/src/Startup.c
@@ -19,6 +19,9 @@
#include "cctk_Arguments.h"
#include "cctk_Parameters.h"
+static const char *rcsid = "$Id$";
+CCTK_FILEVERSION(CactusPUGHIO_IsoSurfacer_Startup_c)
+
/*int Iso_SetupServer(int dataport, int clientport, int queue_size, int hunt);
Iso_SetupServer(7051, 7050, 5, 1); needs to move into InitGH */