aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 */