source: sasview/sansmodels/src/sans/models/c_extensions/core_shell.h @ 5f89fb8

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 5f89fb8 was 0f5bc9f, checked in by Mathieu Doucet <doucetm@…>, 16 years ago

Update of all C models to the new style of C++ models

  • Property mode set to 100644
File size: 1.1 KB
Line 
1#if !defined(core_shell_h)
2#define core_shell_h
3
4/**
5 * Structure definition for core-shell parameters
6 */
7 //[PYTHONCLASS] = CoreShellModel
8 //[DISP_PARAMS] = radius, thickness
9typedef struct {
10    /// Scale factor
11    //  [DEFAULT]=scale=1.0
12    double scale;
13    /// Core Radius (A) 60.0
14    //  [DEFAULT]=radius=60.0 A
15    double radius;
16    /// Shell Thickness (A) 10.0
17    //  [DEFAULT]=thickness=10 A
18    double thickness;
19    /// Core SLD (Å-2) 1.0e-6
20    //  [DEFAULT]=core_sld=1.0e-6 A-2
21    double core_sld;
22        /// Shell SLD (Å-2) 2.0e-6
23        //  [DEFAULT]=shell_sld=2.0e-6 A-2
24        double shell_sld;
25        /// Solvent SLD (Å-2) 3.0e-6
26        //  [DEFAULT]=solvent_sld=3.0e-6 A-2
27        double solvent_sld;
28        /// Incoherent Background (cm-1) 0.000
29        //  [DEFAULT]=background=0 cm-1
30        double background;
31} CoreShellParameters;
32
33
34
35/// 1D scattering function
36double core_shell_analytical_1D(CoreShellParameters *pars, double q);
37
38/// 2D scattering function
39double core_shell_analytical_2D(CoreShellParameters *pars, double q, double phi);
40double core_shell_analytical_2DXY(CoreShellParameters *pars, double qx, double qy);
41
42#endif
Note: See TracBrowser for help on using the repository browser.