source: sasview/src/sas/models/include/libmultifunc/librefl.h @ 79492222

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 79492222 was 79492222, checked in by krzywon, 9 years ago

Changed the file and folder names to remove all SANS references.

  • Property mode set to 100644
File size: 824 bytes
Line 
1#if !defined(librefl_h)
2#define librefl_h
3
4typedef struct {
5        double re;
6        double im;
7} complex;
8
9typedef struct {
10        complex a;
11        complex b;
12        complex c;
13        complex d;
14} matrix;
15
16complex cassign(double real, double imag);
17
18complex cplx_add(complex x,complex y);
19
20complex rcmult(double x,complex y);
21
22complex cplx_sub(complex x,complex y);
23
24complex cplx_mult(complex x,complex y);
25
26complex cplx_div(complex x,complex y);
27
28complex cplx_exp(complex b);
29
30complex cplx_sqrt(complex z);
31
32complex cplx_cos(complex b);
33
34double intersldfunc(int fun_type, double n_sub, double i, double nu, double sld_l, double sld_r);
35double interfunc(int fun_type, double n_sub, double i, double sld_l, double sld_r);
36double linePq(int fun_type, double thick, double sld_in, double sld_out,double r, double q);
37#endif
Note: See TracBrowser for help on using the repository browser.