Ignore:
Timestamp:
May 23, 2008 2:31:50 PM (16 years ago)
Author:
Mathieu Doucet <doucetm@…>
Branches:
master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
ffca8f2
Parents:
a1718df
Message:

Added docs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pr_inversion/c_extensions/invertor.h

    r43c0a8e r896abb3  
    22#define invertor_h 
    33 
    4  
     4/** 
     5 * Internal data structure for P(r) inversion 
     6 */ 
    57typedef struct { 
     8        /// Maximum distance between any two points in the system 
    69    double d_max; 
     10    /// q data 
    711    double *x; 
     12    /// I(q) data 
    813    double *y; 
     14    /// dI(q) data 
    915    double *err; 
     16    /// Number of q points 
    1017    int npoints;     
     18    /// Number of I(q) points 
    1119    int ny;     
     20    /// Number of dI(q) points 
    1221    int nerr;   
     22    /// Alpha value 
    1323    double alpha; 
     24    /// Minimum q to include in inversion 
    1425    double q_min; 
     26    /// Maximum q to include in inversion 
    1527    double q_max; 
    1628} Invertor_params;  
Note: See TracChangeset for help on using the changeset viewer.