Ignore:
Timestamp:
Jul 9, 2009 2:52:29 PM (15 years ago)
Author:
Gervaise Alina <gervyh@…>
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:
e4193d9
Parents:
3d25331f
Message:

add more model to sansview

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sansview/perspectives/fitting/models.py

    re7b1ccf rcee6867  
    133133        self.shape_list.append(CoreShellCylinderModel) 
    134134         
     135        from sans.models.MultiShellModel import MultiShellModel 
     136        self.shape_list.append(MultiShellModel) 
     137         
     138        from sans.models.BinaryHSModel import BinaryHSModel 
     139        self.shape_list.append(BinaryHSModel) 
     140         
     141        from sans.models.VesicleModel import VesicleModel 
     142        self.shape_list.append(VesicleModel) 
     143         
     144        from sans.models.HollowCylinderModel import HollowCylinderModel 
     145        self.shape_list.append(HollowCylinderModel) 
     146         
    135147        from sans.models.EllipticalCylinderModel import EllipticalCylinderModel 
    136148        self.shape_list.append(EllipticalCylinderModel) 
     
    199211        from sans.models.LineModel import LineModel 
    200212        self.shape_indep_list.append(LineModel) 
     213         
     214        from sans.models.PeakGaussModel import PeakGaussModel 
     215        self.shape_indep_list.append(PeakGaussModel) 
     216         
     217        from sans.models.PeakLorentzModel import PeakLorentzModel 
     218        self.shape_indep_list.append(PeakLorentzModel) 
    201219         
    202220        from sans.models.FractalModel import FractalModel 
Note: See TracChangeset for help on using the changeset viewer.