Changeset 713cc1c in sasview for src


Ignore:
Timestamp:
Aug 11, 2016 6:16:28 AM (8 years ago)
Author:
wojciech
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:
b61bd57, 66f21cd
Parents:
e5c09cf (diff), 801a296 (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:

Added two readers to registry function, so mac build doesn't fail on them

Location:
src/sas/sascalc
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • src/sas/sascalc/calculator/BaseComponent.py

    rcb4ef58 rdeddda1  
    77# imports 
    88import copy 
     9from collections import OrderedDict 
     10 
    911import numpy 
    1012#TO DO: that about a way to make the parameter 
     
    254256        Return a list of all available parameters for the model 
    255257        """ 
    256         list = self.params.keys() 
     258        list = _ordered_keys(self.params) 
    257259        # WARNING: Extending the list with the dispersion parameters 
    258260        list.extend(self.getDispParamList()) 
     
    264266        """ 
    265267        list = [] 
    266  
    267         for item in self.dispersion.keys(): 
    268             for p in self.dispersion[item].keys(): 
     268        for item in _ordered_keys(self.dispersion): 
     269            for p in _ordered_keys(self.dispersion[item]): 
    269270                if p not in ['type']: 
    270271                    list.append('%s.%s' % (item.lower(), p.lower())) 
     
    309310        """ 
    310311        raise ValueError, "Model operation are no longer supported" 
     312 
     313 
     314def _ordered_keys(d): 
     315    keys = list(d.keys()) 
     316    if not isinstance(d, OrderedDict): 
     317        keys.sort() 
     318    return keys 
  • src/sas/sascalc/calculator/sas_gen.py

    rcb4ef58 rd2fd8fc  
    33SAS generic computation and sld file readers 
    44""" 
     5import sas.sascalc.calculator.core.sld2i as mod 
    56from sas.sascalc.calculator.BaseComponent import BaseComponent 
    6 import sas.sascalc.calculator.core.sld2i as mod 
    77from periodictable import formula 
    88from periodictable import nsf 
  • src/sas/sascalc/dataloader/readers/associations.py

    rb699768 re5c09cf  
    9292    import nexus_reader 
    9393    import sesans_reader 
     94    import cansas_reader_HDF5 
     95    import anton_paar_saxs_reader 
    9496    registry_function(sesans_reader) 
    9597    registry_function(abs_reader) 
     
    102104    #registry_function(tiff_reader) 
    103105    registry_function(nexus_reader) 
    104      
     106    registry_function(cansas_reader_HDF5) 
     107    registry_function(anton_paar_saxs_reader) 
    105108    return True 
Note: See TracChangeset for help on using the changeset viewer.