aboutsummaryrefslogtreecommitdiff
path: root/src/external.inc
diff options
context:
space:
mode:
authorknarf <knarf@1bdb13ef-5d69-4035-bb54-08abeb3aa7f1>2009-11-18 16:36:37 +0000
committerknarf <knarf@1bdb13ef-5d69-4035-bb54-08abeb3aa7f1>2009-11-18 16:36:37 +0000
commit24f0a1aeb20fceabd8935cd4b16e4bfa6ff195f0 (patch)
tree38bf215df1a5aaf0061a786df9bfac9bb23b34f0 /src/external.inc
This is a _temporary_ repository to be able to start to work on the
code right now. I have put in the public version of Whisky to start from. Everybody with commit rights should get commit messages (and the other way around). It should not be a problem to add people to that list, just ask. I don't want to get into political problems because someone feels excluded, but I also don't want to give everyone access per se. Frank git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/TOVSolver/trunk@3 1bdb13ef-5d69-4035-bb54-08abeb3aa7f1
Diffstat (limited to 'src/external.inc')
-rw-r--r--src/external.inc12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/external.inc b/src/external.inc
new file mode 100644
index 0000000..3604287
--- /dev/null
+++ b/src/external.inc
@@ -0,0 +1,12 @@
+
+void TOVSolverC_export_local_variables(CCTK_REAL **exported_TOV_press_1d, CCTK_REAL **exported_TOV_m_1d, CCTK_REAL **exported_TOV_phi_1d, CCTK_REAL **exported_TOV_rbar_1d, CCTK_REAL **exported_TOV_r_1d)
+{
+ int i;
+
+ *exported_TOV_press_1d = TOV_press_1d;
+ *exported_TOV_m_1d = TOV_m_1d;
+ *exported_TOV_phi_1d = TOV_phi_1d;
+ *exported_TOV_rbar_1d = TOV_rbar_1d;
+ *exported_TOV_r_1d = TOV_r_1d;
+}
+