aboutsummaryrefslogtreecommitdiff
path: root/src/multipole.hh
diff options
context:
space:
mode:
authorknarf <knarf@4f5cb9a8-4dd8-4c2d-9bbd-173fa4467843>2010-03-26 10:25:54 +0000
committerknarf <knarf@4f5cb9a8-4dd8-4c2d-9bbd-173fa4467843>2010-03-26 10:25:54 +0000
commitd47c3dc7324ddc372d3eeeab1366a38064fd70db (patch)
tree9d64f0168f82cbb15fe0e0e83a961e6807c5b5dc /src/multipole.hh
use trunc structure
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/Multipole/trunk@53 4f5cb9a8-4dd8-4c2d-9bbd-173fa4467843
Diffstat (limited to 'src/multipole.hh')
-rw-r--r--src/multipole.hh15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/multipole.hh b/src/multipole.hh
new file mode 100644
index 0000000..004d351
--- /dev/null
+++ b/src/multipole.hh
@@ -0,0 +1,15 @@
+#include "cctk.h"
+#include "cctk_Arguments.h"
+
+// Multipole_Calc
+// This is the main scheduling file. Because we are completely local here
+// and do not use cactus arrays etc, we schedule only one function and then
+// like program like one would in C, C++ with this function taking the
+// place of int main(void).
+//
+// This function calls functions to accomplish 3 things:
+// 1) Interpolate psi4 onto a sphere
+// 2) Integrate psi4 with the ylm's over that sphere
+// 2) Output the mode decomposed psi4
+extern "C" void Multipole_Calc(CCTK_ARGUMENTS);
+