Changeset 9c490bc in sasmodels


Ignore:
Timestamp:
Mar 20, 2016 1:17:29 PM (8 years ago)
Author:
wojciech
Branches:
master, core_shell_microgels, costrafo411, magnetic_model, release_v0.94, release_v0.95, ticket-1257-vesicle-product, ticket_1156, ticket_1265_superball, ticket_822_more_unit_tests
Children:
19bf626
Parents:
f35f1dd
Message:

Some intermediate changes

Location:
sasmodels
Files:
2 added
1 edited

Legend:

Unmodified
Added
Removed
  • sasmodels/kernel_iq.c

    rf35f1dd r9c490bc  
    197197Scale and background cannot be coordinated with other polydisperse parameters 
    198198 
    199 TODO: cutoff 
     199Cutoff paramater is basically used to restrict the region where integration 
     200is peformed i.e. polydispersity hypercude is limitted spheres. 
     201 
    200202*/ 
    201203 
     
    219221} ParameterBlock; 
    220222 
    221 #define FULL_KERNEL_NAME KERNEL_NAME ## _ ## IQ_FUNC 
    222 KERNEL 
     223#define KERNEL_NAME test_Iq 
     224#define FULL_KERNEL_NAME test_Iq 
     225#define IQ_FUNC Iq 
     226 
     227#define IQ_PARAMETERS ignored 
     228#define IQ_FIXED_PARAMETER_DECLARATIONS const double scale, \ 
     229    const double background, \ 
     230    const double ignored 
     231#define IQ_PARAMETER_DECLARATIONS double ignored 
     232#define IQXY_KERNEL_NAME bessel_Iqxy 
     233#define IQXY_PARAMETERS ignored 
     234#define IQXY_FIXED_PARAMETER_DECLARATIONS const double scale, \ 
     235    const double background, \ 
     236    const double ignored 
     237#define IQXY_PARAMETER_DECLARATIONS double ignored 
     238 
     239 
    223240void FULL_KERNEL_NAME( 
    224241    int nq,                 // number of q values 
     
    376393} 
    377394} 
     395} 
Note: See TracChangeset for help on using the changeset viewer.