source: sasview/pr_inversion/c_extensions/invertor.h @ 9e8dc22

ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalccostrafo411magnetic_scattrelease-4.1.1release-4.1.2release-4.2.2release_4.0.1ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since 9e8dc22 was 9e8dc22, checked in by Mathieu Doucet <doucetm@…>, 16 years ago

Initial import.

  • Property mode set to 100644
File size: 633 bytes
Line 
1#if !defined(invertor_h)
2#define invertor_h
3
4
5typedef struct {
6    double d_max;
7    double *x;
8    double *y;
9    double *err;
10    int npoints;   
11    int ny;   
12    int nerr;   
13} Invertor_params;
14
15void invertor_dealloc(Invertor_params *pars);
16
17void invertor_init(Invertor_params *pars);
18
19
20double pr_sphere(double R, double r);
21double ortho(double d_max, int n, double r);
22double ortho_transformed(double d_max, int n, double q);
23double ortho_derived(double d_max, int n, double r);
24double iq(double *c, double d_max, int n_c, double q);
25double pr(double *c, double d_max, int n_c, double r);
26
27#endif
Note: See TracBrowser for help on using the repository browser.