aboutsummaryrefslogtreecommitdiff
path: root/src/multipole.hh
blob: 004d35145c10ebd20e34109d68c50f6d2f17bc4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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);