initial upload

This commit is contained in:
2024-09-10 20:25:18 +08:00
parent b8de03ee4f
commit f1cc876972
377 changed files with 2721267 additions and 34 deletions

View File

@@ -0,0 +1,22 @@
#ifndef _DATA_FUNC_H
#define _DATA_FUNC_H
#include <iostream>
#include <fstream>
#include <sstream>
#include <cmath>
#include <iomanip>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#define HORIZATION "-h"
#define VERTICAL "-v"
#define ANOMOALY "-a"
#define OUTPUT "-o"
#define RANGE "-d"
#define INTERVAL "-i"
#define PARAMETER "-p"
#define HELP "--help"
#define pi 3.1415926535897932384626433832795
#define G 6.67191e-3
using namespace std;
#endif