Changeset 669bf21 in sasmodels for sasmodels/models/spherical_sld.py


Ignore:
Timestamp:
Mar 21, 2016 8:12:13 AM (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:
f8da3f3
Parents:
2be86e2
Message:

Spherical SLD doc changed to brackets rep

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sasmodels/models/spherical_sld.py

    r2be86e2 r669bf21  
    185185#source = ["lib/librefl.c",  "lib/sph_j1c.c", "spherical_sld.c"] 
    186186 
    187 Iq = """ 
    188     return q; 
    189     """ 
    190  
    191 Iqxy = """ 
    192     // never called since no orientation or magnetic parameters. 
    193     //return -1.0; 
    194     """ 
     187def Iq(q, *args, **kw): 
     188    return q 
     189 
     190def Iqxy(qx, *args, **kw): 
     191    return qx 
     192 
    195193 
    196194demo = dict( 
Note: See TracChangeset for help on using the changeset viewer.