forked from sukhdeep2/corr_pc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcorels.h
More file actions
executable file
·21 lines (17 loc) · 759 Bytes
/
corels.h
File metadata and controls
executable file
·21 lines (17 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <omp.h>
#include <iostream>
#include <stdio.h>
#include <math.h>
#define _USE_MATH_DEFINES
#include <time.h>
#include "data_def.h"
#include "calcs.h"
#include "initialization.h"
#include "outp.h"
using namespace std;
int density_density_corel(gal &g1,gal &g2,data_info &data_inf,calc_temp &ct); // correlations b/w 2 galaxies
int density_convergence_corel(gal &g1,gal &g2,data_info &data_inf,calc_temp &ct);//wl type correlations
int shape_convergence_corel(gal &g1,gal &g2,data_info &data_inf,calc_temp &ct);//wl type correlations
int shape_shape_corel(gal &g1,gal &g2,data_info &data_inf,calc_temp &ct);
int shape_density_corel(gal &g1,gal &g2,data_info &data_inf,calc_temp &ct);
int ED_corel(gal &g1,gal &g2,data_info &data_inf,calc_temp &ct);