aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorgoodale <goodale@0cbbb82d-14ec-4423-a1fb-2ab18257ecaa>2002-04-25 22:03:52 +0000
committergoodale <goodale@0cbbb82d-14ec-4423-a1fb-2ab18257ecaa>2002-04-25 22:03:52 +0000
commit2d031812d302379fe809b35d4c834451b0dde2cb (patch)
treee4efcf64c56abc9e4b30d7d794ee1f22749a9240 /src
parenta55ee96fb5290060efb80289080cf6129b6b18c7 (diff)
Initial import of new Einstein stuff. This has the new thorns, but not all
are fully functional yet. When I have completed this stage I'll send an updated spec out with some questions which have arisen during this process. Please don't import anything new without checking with me first, as I want to play games on the server copying cvs files around to preserve histories on files which are only minimally touched. Tom git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinBase/StaticConformal/trunk@2 0cbbb82d-14ec-4423-a1fb-2ab18257ecaa
Diffstat (limited to 'src')
-rw-r--r--src/Initialise.c70
-rw-r--r--src/make.code.defn9
2 files changed, 79 insertions, 0 deletions
diff --git a/src/Initialise.c b/src/Initialise.c
new file mode 100644
index 0000000..45b9433
--- /dev/null
+++ b/src/Initialise.c
@@ -0,0 +1,70 @@
+ /*@@
+ @file Initialise.c
+ @date Thu Apr 25 19:53:02 2002
+ @author Tom Goodale
+ @desc
+ Code to initialise stuff for StaticConfomal
+ @enddesc
+ @version $Header$
+ @@*/
+
+#include "cctk.h"
+
+#include "cctk_Arguments.h"
+#include "cctk_Parameters.h"
+
+static const char *rcsid = "$Header$";
+
+CCTK_FILEVERSION(CactusEinstein_StaticConformal_Initialise_c)
+
+/********************************************************************
+ ********************* Local Data Types ***********************
+ ********************************************************************/
+
+/********************************************************************
+ ********************* Local Routine Prototypes *********************
+ ********************************************************************/
+
+/********************************************************************
+ ***************** Scheduled Routine Prototypes *********************
+ ********************************************************************/
+
+void StaticConformal_InitialiseState(CCTK_ARGUMENTS);
+
+/********************************************************************
+ ********************* Other Routine Prototypes *********************
+ ********************************************************************/
+
+/********************************************************************
+ ********************* Local Data *****************************
+ ********************************************************************/
+
+/********************************************************************
+ ********************* External Routines **********************
+ ********************************************************************/
+
+/*@@
+ @routine StaticConformal_InitialiseState
+ @date Thu Apr 25 19:11:32 2002
+ @author Tom Goodale
+ @desc
+ Scheduled routine to set the conformal_state variable to 0
+ @enddesc
+ @calls
+ @calledby
+ @history
+
+ @endhistory
+
+@@*/
+void StaticConformal_InitialiseState(CCTK_ARGUMENTS)
+{
+ DECLARE_CCTK_ARGUMENTS;
+ DECLARE_CCTK_PARAMETERS;
+
+ *conformal_state = 0;
+}
+
+/********************************************************************
+ ********************* Local Routines *************************
+ ********************************************************************/
diff --git a/src/make.code.defn b/src/make.code.defn
new file mode 100644
index 0000000..176a3a0
--- /dev/null
+++ b/src/make.code.defn
@@ -0,0 +1,9 @@
+# Main make.code.defn file for thorn StaticConformal
+# $Header$
+
+# Source files in this directory
+SRCS = Initialise.c
+
+# Subdirectories containing source files
+SUBDIRS =
+