-
Notifications
You must be signed in to change notification settings - Fork 51
/
run_correlations_mocks.c
331 lines (288 loc) · 13 KB
/
run_correlations_mocks.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
/* File: run_correlations_mocks.c */
/*
This file is a part of the Corrfunc package
Copyright (C) 2015-- Manodeep Sinha (manodeep@gmail.com)
License: MIT LICENSE. See LICENSE file under the top-level
directory at https://github.com/manodeep/Corrfunc/
*/
/*
Example code to show how to use the correlation function libraries
Author: Manodeep Sinha <manodeep@gmail.com>
Date: At some point in early 2015.
*/
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <sys/time.h>
#include "function_precision.h"
#include "io.h"
#include "defs.h"
#include "utils.h"
#include "cosmology_params.h"
/* Library proto-types + struct definitions in the ../..//include directory */
#include "countpairs_rp_pi_mocks.h"
#include "countpairs_s_mu_mocks.h"
#include "countpairs_theta_mocks.h"
#include "countspheres_mocks.h"
#ifndef MAXLEN
#define MAXLEN 500
#endif
void Printhelp(void);
void Printhelp(void)
{
fprintf(stderr,ANSI_COLOR_RED "=========================================================================\n") ;
fprintf(stderr," --- run_correlations_mocks file format binfile boxsize Nthreads \n") ;
fprintf(stderr," --- Measure the auto-correlation functions DD(r), DD(rp, pi) and wp(rp) for a single file\n");
fprintf(stderr," * file = name of data file\n") ;
fprintf(stderr," * format = format of data file (a=ascii, f=fast-food)\n") ;
fprintf(stderr," * binfile = name of ascii file containing the r-bins (rmin rmax for each bin)\n") ;
fprintf(stderr," * pimax = pimax (in same units as X/Y/Z of the data)\n");
fprintf(stderr," * cosmology = flag to pick-up the cosmology combination to use (set as an array of combinations in ../utils/cosmology_params.c)\n");
fprintf(stderr," * mu_max = Max. value of the cosine of the angle to the LOS (must be within [0.0, 1.0])\n");
fprintf(stderr," * nmu_bins = Number of linear bins to create (the bins themselves range from [0.0, mu_max]\n");
#if defined(USE_OMP) && defined(_OPENMP)
fprintf(stderr," * numthreads = number of threads to use\n");
#endif
fprintf(stderr,"=========================================================================" ANSI_COLOR_RESET "\n") ;
}
int main(int argc, char **argv)
{
char file[MAXLEN];
char fileformat[MAXLEN];
char binfile[MAXLEN];
DOUBLE *ra1=NULL,*dec1=NULL,*cz1=NULL;
struct timeval t0,t1;
DOUBLE pimax;
int cosmology=1;
int nthreads=4;
int nmu_bins;
DOUBLE mu_max;
struct config_options options = get_config_options();
options.verbose=1;
options.periodic=0;
options.need_avg_sep=1;
options.float_type = sizeof(*ra1);
#if defined(_OPENMP)
const char argnames[][30]={"file","format","binfile","pimax","cosmology","mu_max", "nmu_bins", "Nthreads"};
#else
const char argnames[][30]={"file","format","binfile","pimax","cosmology", "mu_max", "nmu_bins"};
#endif
int nargs=sizeof(argnames)/(sizeof(char)*30);
if(argc > 1) {
//Command-line options were supplied - check that they are correct
if(argc < (nargs + 1) ) {
//Not enough options were supplied
Printhelp();
return EXIT_FAILURE;
} else {
//Correct number of options - let's parse them.
my_snprintf(file,MAXLEN, "%s",argv[1]);
my_snprintf(fileformat,MAXLEN, "%s",argv[2]);
my_snprintf(binfile,MAXLEN,"%s",argv[3]);
pimax=atof(argv[4]);
cosmology=atoi(argv[5]);
mu_max=atof(argv[6]);
nmu_bins=atoi(argv[7]);
#if defined(_OPENMP)
nthreads = atoi(argv[8]);
#endif
}
} else {
my_snprintf(file, MAXLEN, "%s", "../tests/data/Mr19_mock_northonly.rdcz.dat");
my_snprintf(fileformat, MAXLEN, "%s","a");
my_snprintf(binfile, MAXLEN,"%s","../tests/bins");
pimax=40.0;
cosmology=1;
mu_max=1.0;
nmu_bins=10;
}
fprintf(stderr,ANSI_COLOR_BLUE "Running `%s' with the parameters \n",argv[0]);
fprintf(stderr,"\n\t\t -------------------------------------\n");
fprintf(stderr,"\t\t %-10s = %s \n",argnames[0],file);
fprintf(stderr,"\t\t %-10s = %s \n",argnames[1],fileformat);
fprintf(stderr,"\t\t %-10s = %s \n",argnames[2],binfile);
fprintf(stderr,"\t\t %-10s = %10.4lf\n",argnames[3],pimax);
fprintf(stderr,"\t\t %-10s = %d\n",argnames[4],cosmology);
fprintf(stderr,"\t\t %-10s = %10.4lf\n",argnames[5],mu_max);
fprintf(stderr,"\t\t %-10s = %dlf\n",argnames[6],nmu_bins);
#if defined(_OPENMP)
fprintf(stderr,"\t\t %-10s = %d\n",argnames[7],nthreads);
#endif
fprintf(stderr,"\t\t -------------------------------------" ANSI_COLOR_RESET "\n");
{
int status = init_cosmology(cosmology);
if(status != EXIT_SUCCESS) {
return status;
}
}
//Read-in the data
const int64_t ND1 = read_positions(file,fileformat,sizeof(*ra1),3, &ra1, &dec1, &cz1);
int autocorr=1;
DOUBLE *ra2 = ra1;
DOUBLE *dec2 = dec1;
DOUBLE *cz2 = cz1;
int64_t ND2 = ND1;
//Do the DD(rp, pi) counts
{
gettimeofday(&t0,NULL);
#if defined(_OPENMP)
fprintf(stderr,ANSI_COLOR_MAGENTA "Command-line for running equivalent DD(rp,pi) calculation would be:\n `%s %s %s %s %s %s %lf %d %d'" ANSI_COLOR_RESET "\n",
"../DDrppi_mocks/DDrppi_mocks",file,fileformat,file,fileformat,binfile,pimax,cosmology,nthreads);
#else
fprintf(stderr,ANSI_COLOR_MAGENTA "Command-line for running equivalent DD(rp,pi) calculation would be:\n `%s %s %s %s %s %s %lf %d'" ANSI_COLOR_RESET "\n",
"../DDrppi_mocks/DDrppi_mocks",file,fileformat,file,fileformat,binfile,pimax,cosmology);
#endif
results_countpairs_mocks results;
int status = countpairs_mocks(ND1,ra1,dec1,cz1,
ND2,ra2,dec2,cz2,
nthreads,
autocorr,
binfile,
pimax,
cosmology,
&results,
&options, NULL);
if(status != EXIT_SUCCESS) {
return status;
}
gettimeofday(&t1,NULL);
double pair_time = ADD_DIFF_TIME(t0,t1);
#if 0
const DOUBLE dpi = pimax/(DOUBLE)results.npibin ;
const int npibin = results.npibin;
for(int i=1;i<results.nbin;i++) {
const double logrp = LOG10(results.rupp[i]);
for(int j=0;j<npibin;j++) {
int index = i*(npibin+1) + j;
fprintf(stdout,"%10"PRIu64" %20.8lf %20.8lf %20.8lf \n",results.npairs[index],results.rpavg[index],logrp,(j+1)*dpi);
}
}
#endif
fprintf(stderr,ANSI_COLOR_GREEN "Done DD(rp,pi) auto-correlation. Ngalaxies = %12"PRId64" Time taken = %8.2lf seconds " ANSI_COLOR_RESET "\n", ND1, pair_time);
//free the result structure
free_results_mocks(&results);
}
//Do the DD(s, mu) counts
{
gettimeofday(&t0,NULL);
#if defined(_OPENMP)
fprintf(stderr,ANSI_COLOR_MAGENTA "Command-line for running equivalent DD(s,mu) calculation would be:\n `%s %s %s %s %s %s %lf %d %d %d'"ANSI_COLOR_RESET"\n",
"../DDsmu_mocks/DDsmu_mocks",file,fileformat,file,fileformat,binfile,mu_max,nmu_bins,cosmology,nthreads);
#else
fprintf(stderr,ANSI_COLOR_MAGENTA "Command-line for running equivalent DD(s,mu) calculation would be:\n `%s %s %s %s %s %s %lf %d %d'"ANSI_COLOR_RESET"\n",
"../DDsmu_mocks/DDsmu_mocks",file,fileformat,file,fileformat,binfile,mu_max,nmu_bins,cosmology);
#endif
results_countpairs_mocks_s_mu results;
int status = countpairs_mocks_s_mu(ND1,ra1,dec1,cz1,
ND2,ra2,dec2,cz2,
nthreads,
autocorr,
binfile,
mu_max,
nmu_bins,
cosmology,
&results,
&options, NULL);
if(status != EXIT_SUCCESS) {
return status;
}
gettimeofday(&t1,NULL);
double pair_time = ADD_DIFF_TIME(t0,t1);
#if 0
const DOUBLE dmu = mu_max/(DOUBLE)results.nmu_bins ;
const int nmubin = results.nmu_bins;
for(int i=1;i<results.nsbin;i++) {
const double log_supp = LOG10(results.supp[i]);
for(int j=0;j<nmubin;j++) {
const int index = i*(nmubin+1) + j;
fprintf(stdout,"%10"PRIu64" %20.8lf %20.8lf %20.8lf %20.8lf \n",results.npairs[index],results.savg[index],log_supp,(j+1)*dmu);
}
}
#endif
fprintf(stderr,ANSI_COLOR_GREEN "Done DD(s,mu) auto-correlation. Ngalaxies = %12"PRId64" Time taken = %8.2lf seconds "ANSI_COLOR_RESET"\n", ND1, pair_time);
//free the result structure
free_results_mocks_s_mu(&results);
}
//Do the DD(theta) counts
{
gettimeofday(&t0,NULL);
#if defined(_OPENMP)
fprintf(stderr,ANSI_COLOR_MAGENTA "Command-line for running equivalent w(theta) calculation would be:\n `%s %s %s %s %s %s %d'" ANSI_COLOR_RESET "\n",
"../DDtheta_mocks/DDtheta_mocks",file,fileformat,file,fileformat,binfile,nthreads);
#else
fprintf(stderr,ANSI_COLOR_MAGENTA "Command-line for running equivalent w(theta) calculation would be:\n `%s %s %s %s %s %s '" ANSI_COLOR_RESET "\n",
"../DDtheta_mocks/DDtheta_mocks",file,fileformat,file,fileformat,binfile);
#endif
results_countpairs_theta results;
options.fast_acos=1;//over-ride Makefile option
int status = countpairs_theta_mocks(ND1,ra1,dec1,
ND2,ra2,dec2,
nthreads,
autocorr,
binfile,
&results,
&options, NULL);
if(status != EXIT_SUCCESS) {
return status;
}
gettimeofday(&t1,NULL);
DOUBLE pair_time = ADD_DIFF_TIME(t0,t1);
#if 0
/*---Output-Pairs-------------------------------------*/
DOUBLE theta_low = results.theta_upp[0];
for(int i=1;i<results.nbin;i++) {
fprintf(stdout,"%10"PRIu64" %20.8lf %20.8lf %20.8lf \n",results.npairs[i],results.theta_avg[i],theta_low,results.theta_upp[i]);
theta_low=results.theta_upp[i];
}
#endif
fprintf(stderr,ANSI_COLOR_GREEN "Done wtheta. Ngalaxies = %12"PRId64" Time taken = %8.2lf seconds" ANSI_COLOR_RESET "\n", ND1, pair_time);
//free the result structure
free_results_countpairs_theta(&results);
}
//Do the VPF
{
gettimeofday(&t0,NULL);
const double rmax=10.0;
const int nbin=10;
const int nc=10000;
const int num_pN=6;
const int64_t Nran=nc;//Need to set it to nc so that the loop runs
DOUBLE *xran=NULL,*yran=NULL,*zran=NULL;
const int threshold_neighbors=1;
const char centers_file[]="../tests/data/Mr19_centers_xyz_forVPF_rmax_10Mpc.txt";
fprintf(stderr,ANSI_COLOR_MAGENTA "Command-line for running equivalent DD(theta) calculation would be:\n"
"`%s %lf %d %d %d %lf %s %s %s %s %s %d'"ANSI_COLOR_RESET "\n",
"../vpf_mocks/vpf_mocks",rmax,nbin,nc,num_pN,0.0,file,fileformat,"junk","junkformat",centers_file,cosmology);
results_countspheres_mocks results;
int status = countspheres_mocks(ND1, ra1, dec1, cz1,
Nran, xran, yran, zran,
threshold_neighbors,
rmax, nbin, nc,
num_pN,
centers_file,
cosmology,
&results,
&options, NULL);
if(status != EXIT_SUCCESS) {
return status;
}
gettimeofday(&t1,NULL);
double sphere_time = ADD_DIFF_TIME(t0,t1);
#if 0
//Output the results
const DOUBLE rstep = rmax/(DOUBLE)nbin ;
for(int ibin=0;ibin<results.nbin;ibin++) {
const double r=(ibin+1)*rstep;
fprintf(stdout,"%10.2"REAL_FORMAT" ", r);
for(int i=0;i<num_pN;i++) {
fprintf(stdout," %10.4e", (results.pN)[ibin][i]);
}
fprintf(stdout,"\n");
}
#endif
fprintf(stderr,ANSI_COLOR_GREEN "Done VPF. Ngalaxies = %12"PRId64" Time taken = %8.2lf seconds" ANSI_COLOR_RESET "\n", ND1, sphere_time);
free_results_countspheres_mocks(&results);
}
free(ra1);free(dec1);free(cz1);
return EXIT_SUCCESS;
}