aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/common.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/common.h b/src/common.h
deleted file mode 100644
index f4bb8a7..0000000
--- a/src/common.h
+++ /dev/null
@@ -1,31 +0,0 @@
-#ifndef _COMMON_H
-#define _COMMON_H
-
-#include "cctk.h"
-
-
-typedef struct
-{
- isofl isovalue;
- char *outfname;
- CCTK_INT4 outtype;
- CCTK_INT4 step;
- CCTK_INT4 doRemoveDuplicateVertices;
- CCTK_INT4 useTree;
- CCTK_INT4 doEliminateSmallTriangles;
-
-// CCTK_INT4 timestep; timestep information is really not required here!
- isofl minval; // need to use cactus collective ops for this
- isofl maxval;
-} par_st;
-
-
-typedef struct GridAll_st
-{
- cGH *GH;
- int gfi;
- int timelevel;
- CCTK_REAL *x, *y, *z;
-} GridAll_st;
-
-#endif