Changeset 59ce4cb in sasmodels


Ignore:
Timestamp:
Mar 18, 2016 6:17:17 AM (8 years ago)
Author:
krzywon
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:
a146eaa, 170ea69
Parents:
a06430c (diff), f903f0a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge remote-tracking branch 'origin/master'

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • sasmodels/convert.py

    r78d3341 r74f7238  
    1515    'be_polyelectrolyte', 
    1616    'correlation_length', 
    17     'fractal_core_shell' 
     17    'fractal_core_shell', 
    1818    'binary_hard_sphere', 
    1919] 
  • setup.py

    r3eb3312 rf903f0a  
    33packages = find_packages(exclude=['contrib', 'docs', 'tests*']) 
    44package_data = { 
    5     'sasmodels.models': ['*.c'], 
     5    'sasmodels.models': ['*.c','lib/*.c'], 
     6    'sasmodels': ['*.c'], 
    67} 
    78required = [] 
  • example/sesansfit.py

    r5bb9c79 ra06430c  
    11from bumps.names import * 
    2 from sas import core, bumps_model, sesans 
     2from sasmodels import core, bumps_model, sesans 
    33 
    44HAS_CONVERTER = True 
     
    3030        data = loader.load(file) 
    3131        if data is None: raise IOError("Could not load file %r"%(file)) 
     32        data.needs_all_q = acceptance_angle is not None 
    3233        if HAS_CONVERTER == True: 
    3334            default_unit = "A" 
  • sasmodels/sesans.py

    r251b40b ra06430c  
    2323    return np.arange(q_min, q_max, dq) 
    2424     
    25 def make_allq(data): 
     25def make_all_q(data): 
    2626    if not data.needs_all_q: 
    2727        return [] 
Note: See TracChangeset for help on using the changeset viewer.