aboutsummaryrefslogtreecommitdiff
path: root/src/multipole.hh
diff options
context:
space:
mode:
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);
+