Changeset 51da9dc in sasview


Ignore:
Timestamp:
Feb 9, 2012 12:01:49 PM (12 years ago)
Author:
Jae Cho <jhjcho@…>
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:
6752950
Parents:
0a90d92
Message:

reordered non_shape list

File:
1 edited

Legend:

Unmodified
Added
Removed
  • fittingview/src/sans/perspectives/fitting/models.py

    r08648c0 r51da9dc  
    480480        self.shape_indep_list.append(FractalModel ) 
    481481        self.model_name_list.append(FractalModel.__name__) 
    482  
    483         from sans.models.MassFractalModel import MassFractalModel 
    484         self.shape_indep_list.append(MassFractalModel) 
    485         self.model_name_list.append(MassFractalModel.__name__) 
    486  
    487         from sans.models.SurfaceFractalModel import SurfaceFractalModel 
    488         self.shape_indep_list.append(SurfaceFractalModel) 
    489         self.model_name_list.append(SurfaceFractalModel.__name__) 
    490          
    491         from sans.models.MassSurfaceFractal import MassSurfaceFractal 
    492         self.shape_indep_list.append(MassSurfaceFractal) 
    493         self.model_name_list.append(MassSurfaceFractal.__name__) 
    494482         
    495483        from sans.models.FractalCoreShellModel import FractalCoreShellModel 
     
    512500        self.shape_indep_list.append( LorentzModel)  
    513501        self.model_name_list.append(LorentzModel.__name__) 
     502 
     503        from sans.models.MassFractalModel import MassFractalModel 
     504        self.shape_indep_list.append(MassFractalModel) 
     505        self.model_name_list.append(MassFractalModel.__name__) 
     506         
     507        from sans.models.MassSurfaceFractal import MassSurfaceFractal 
     508        self.shape_indep_list.append(MassSurfaceFractal) 
     509        self.model_name_list.append(MassSurfaceFractal.__name__) 
    514510         
    515511        from sans.models.PeakGaussModel import PeakGaussModel 
     
    536532        self.shape_indep_list.append(RPA10Model) 
    537533        self.multi_func_list.append(RPA10Model) 
     534 
     535        from sans.models.SurfaceFractalModel import SurfaceFractalModel 
     536        self.shape_indep_list.append(SurfaceFractalModel) 
     537        self.model_name_list.append(SurfaceFractalModel.__name__) 
    538538         
    539539        from sans.models.TeubnerStreyModel import TeubnerStreyModel 
Note: See TracChangeset for help on using the changeset viewer.