-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlikelihood.h
executable file
·64 lines (51 loc) · 2.65 KB
/
likelihood.h
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
/*
* Copyright (c) 2015 Marzia Rivi
*
* This file is part of RadioLensfit.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _likelihood_h
#define _likelihood_h
#include "datatype.h"
#ifdef __cplusplus
extern "C" {
#endif
double f_posterior (const gsl_vector *v, void *params);
double f_likelihood (const gsl_vector *v, void *params);
double loglikelihood(void *params, double ee1, double ee2, int *error);
#ifdef FACETING
double loglikelihood_r(unsigned int nchannels, double band_factor, double acc_time, double* spec,
double* wavenumbers, double ee1, double ee2, double l, double m, double scale,
unsigned long int n_uv_coords, unsigned long int* count, const double variance,
double* uu_metres, double* vv_metres, complexd* visData, double* visM);
void cross_correlation(unsigned int nchannels, double* wavenumbers, unsigned long int n_uv_coords,
unsigned long int* count, double* uu_metres, double* vv_metres, complexd* visData,
double* visMod, double* ho, double* det_sigma);
#else
double loglikelihood_r(unsigned int nchannels, double band_factor, double acc_time, double* spec,
double* wavenumbers, double ee1, double ee2, double l, double m, double scale,
unsigned long int n_uv_coords, unsigned long int* count, const double variance,
double* uu_metres, double* vv_metres, complexd* visData, complexd* visM);
void cross_correlation(unsigned int nchannels, double* wavenumbers, unsigned long int n_uv_coords,
unsigned long int* count, double* uu_metres, double* vv_metres, complexd* visData,
complexd* visMod, double* ho, double* det_sigma);
#endif
double marginalise_over_position_shift(double x);
int likelihood_sampling(int rank, double *mes_e1, double *mes_e2, double maxL, void *params, int np_max,
double *var_e1, double *var_e2, double *cov_e);
#ifdef __cplusplus
}
#endif
#endif