17 lines
328 B
C
17 lines
328 B
C
/*
|
|
Program to calculate gzz of a tesseroid model on a set of points.
|
|
*/
|
|
|
|
|
|
#include "../lib/constants.h"
|
|
#include "../lib/grav_tess.h"
|
|
#include "../lib/tessg_main.h"
|
|
|
|
|
|
/** Main */
|
|
int main(int argc, char **argv)
|
|
{
|
|
return run_tessg_main(argc, argv, "tessgzz", &tess_gzz,
|
|
TESSEROID_GZZ_SIZE_RATIO);
|
|
}
|