Changeset bac3988 in sasview
- Timestamp:
- Mar 17, 2016 11:08:10 AM (9 years ago)
- 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:
- 1c628f0
- Parents:
- a301204
- Files:
-
- 2 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
sasview/default_categories.json
rdb46d13 rbac3988 1 {"Shapes": [[" BarBellModel", true], ["PearlNecklaceModel", true], ["HollowCylinderModel", true], ["CoreMultiShellModel", true], ["FCCrystalModel", true], ["ParallelepipedModel", true], ["FuzzySphereModel", true], ["CoreShellEllipsoidXTModel", true], ["LamellarPCrystalModel", true], ["BCCrystalModel", true], ["EllipticalCylinderModel", true], ["RectangularHollowPrismInfThinWallsModel", true], ["CSParallelepipedModel", true], ["OnionExpShellModel", true], ["MultiShellModel", true], ["RaspBerryModel", true], ["CoreShellEllipsoidModel", true], ["CappedCylinderModel", true], ["CylinderModel", true], ["SphericalSLDModel", true], ["SCCrystalModel", true], ["StackedDisksModel", true], ["LamellarPSHGModel", true], ["CoreShellBicelleModel", true], ["RectangularHollowPrismModel", true], ["LamellarPSModel", true], ["EllipsoidModel", true], ["SphereModel", true], ["VesicleModel", true], ["TriaxialEllipsoidModel", true], ["LamellarModel", true], ["PringlesModel", true], ["RectangularPrismModel", true], ["CoreShellCylinderModel", true], ["BinaryHSModel", true], ["FlexibleCylinderModel", true], ["LamellarFFHGModel", true], ["FlexCylEllipXModel", true], ["LinearPearlsModel", true], ["CoreShellModel", true]], "Structure Factor": [["SquareWellStructure", true], ["HayterMSAStructure", true], ["HardsphereStructure", true], ["StickyHSStructure", true]], "Shape-Independent": [["TwoPowerLawModel", true], ["GelFitModel", true], ["DABModel", true], ["PowerLawAbsModel", true], ["PorodModel", true], ["GuinierModel", true], ["RPA10Model", true], ["TeubnerStreyModel", true], ["StarPolymer", true], ["UnifiedPowerRgModel", true], ["MassSurfaceFractal", true], ["Core2ndMomentModel", true], ["TwoLorentzianModel", true], ["DebyeModel", true], ["MassFractalModel", true], ["GuinierPorodModel", true], ["CorrLengthModel", true], ["PolymerExclVolume", true], ["FractalModel", true], ["PeakLorentzModel", true], ["BroadPeakModel", true], ["FractalCoreShellModel", true], ["PeakGaussModel", true], ["BEPolyelectrolyte", true], ["Poly_GaussCoil", true], ["SurfaceFractalModel", true], ["GaussLorentzGelModel", true], ["LorentzModel", true]], "Uncategorized": [["ReflectivityModel", true], ["ReflectivityIIModel", true], ["LineModel", true], ["MicelleSphCoreModel", true]]}1 {"Shapes": [["cylinder", true], ["lamellarPC", true], ["core_shell_cylinder", true], ["barbell", true], ["fuzzy_sphere", true], ["sphere", true], ["triaxial_ellipsoid", true], ["rectangular_prism", true], ["core_shell_bicelle", true], ["flexible_cylinder", true], ["hollow_rectangular_prism", true], ["ellipsoid", true], ["flexible_cylinder_ex", true], ["capped_cylinder", true], ["core_shell_ellipsoid", true], ["core_shell_parallelepiped", true], ["core_shell_ellipsoid_xt", true], ["vesicle", true], ["core_shell_sphere", true], ["parallelepiped", true], ["hollow_cylinder", true], ["linear_pearls", true], ["pearl_necklace", true], ["lamellar", true], ["multi_shell", true], ["hollow_rectangular_prism_infinitely_thin_walls", true], ["sc_crystal", true], ["stacked_disks", true]], "Structure Factor": [["stickyhardsphere", true], ["hayter_msa", true], ["squarewell", true], ["hardsphere", true]], "Shape-Independent": [["guinier", true], ["gel_fit", true], ["teubner_strey", true], ["gaussian_peak", true], ["mono_gauss_coil", true], ["mass_surface_fractal", true], ["adsorbed_layer", true], ["two_lorentzian", true], ["correlation_length", true], ["dab", true], ["poly_gauss_coil", true], ["guinier_porod", true], ["star_polymer", true], ["two_power_law", true], ["power_law", true], ["peak_lorentz", true], ["rpa", true], ["broad_peak", true], ["surface_fractal", true], ["be_polyelectrolyte", true], ["mass_fractal", true], ["polymer_excl_volume", true], ["porod", true], ["gauss_lorentz_gel", true], ["lorentz", true], ["fractal_core_shell", true]], "Uncategorized": [["line", true], ["fcc_paracrystal", true], ["elliptical_cylinder", true], ["lamellarPS", true], ["micelle_spherical_core", true], ["lamellar_FFHG", true], ["bcc_paracrystal", true], ["sphere (python)", true], ["lamellarCailleHG", true]]} -
src/sas/sasgui/perspectives/calculator/model_editor.py
rd85c194 rbac3988 574 574 if not self.is_p1_custom: 575 575 line = line.replace('#', '') 576 out_f.write(line % (name1 , name1) + "\n")576 out_f.write(line % (name1) + "\n") 577 577 else: 578 578 out_f.write(line + "\n") … … 586 586 if not self.is_p2_custom: 587 587 line = line.replace('#', '') 588 out_f.write(line % (name2 , name2) + "\n")588 out_f.write(line % (name2) + "\n") 589 589 else: 590 590 out_f.write(line + "\n") … … 1265 1265 # User can change the name of the model (only with single functional model) 1266 1266 #P1_model: 1267 #from sas .models.%s import %s as P11267 #from sasmodels.models import %s as P1 1268 1268 #from %s import Model as P1 1269 1269 1270 1270 #P2_model: 1271 #from sas .models.%s import %s as P21271 #from sasmodels.models import %s as P2 1272 1272 #from %s import Model as P2 1273 1273 import os -
src/sas/sasgui/perspectives/fitting/basepage.py
r50a77df rbac3988 1282 1282 else: 1283 1283 self.model_view.SetLabel("1D Mode") 1284 1284 1285 1285 ## set the select all check box to the a given state 1286 1286 self.cb1.SetValue(state.cb1) … … 1904 1904 m_list.append(self.model_dict[model]) 1905 1905 #else: 1906 # msg = "This model is disabled by Category Manager." 1906 # msg = "This model is disabled by Category Manager." 1907 1907 # wx.PostEvent(self.parent.parent, 1908 1908 # StatusEvent(status=msg, info="error")) … … 1945 1945 name = model.__class__.__name__ 1946 1946 if models.__name__ != "NoStructure": 1947 if hasattr(model, "oldname"): 1948 name = model.oldname 1949 elif hasattr(model, "name"): 1950 name = model.name 1947 name = model.name 1951 1948 mlist.append((name, models)) 1952 1949 … … 2417 2414 self._draw_model() 2418 2415 ## Need to use FitInside again here to replace the next four lines. 2419 ## Otherwised polydispersity off does not resize the scrollwindow. 2416 ## Otherwised polydispersity off does not resize the scrollwindow. 2420 2417 ## PDB Nov 28, 2015 2421 2418 self.FitInside() … … 2461 2458 self.values = {} 2462 2459 self.weights = {} 2463 2460 2464 2461 #from sas.models.dispersion_models import GaussianDispersion 2465 2462 from sasmodels.weights import GaussianDispersion … … 2970 2967 self.Show(False) 2971 2968 self.set_model_param_sizer(self.model) 2972 #self._set_sizer_dispersion() 2969 #self._set_sizer_dispersion() 2973 2970 self.state.magnetic_on = self.magnetic_on 2974 2971 self.SetupScrolling() … … 3597 3594 sizer_cat_box.Add(show_cat_button) 3598 3595 #self.shape_rbutton.SetValue(True) 3599 3596 3600 3597 sizer_radiobutton = wx.GridSizer(2, 2, 5, 5) 3601 3598 #sizer_radiobutton.Add(self.shape_rbutton) … … 3817 3814 event.Skip() 3818 3815 #pass 3819 -
src/sas/sasgui/perspectives/fitting/models.py
rf66d9d1 rbac3988 303 303 for mod_name in sasmodels.core.list_models(): 304 304 mod_def = sasmodels.core.load_model_info(mod_name) 305 self.model_dictionary[mod_def['oldname']] = make_class(mod_def,dtype=None,namestyle='oldname') 306 self.model_name_list.append(mod_def['oldname']) 305 self.model_dictionary[mod_def['name']] = make_class(mod_def,dtype=None,namestyle='name') 307 306 if mod_def['structure_factor'] == True: 308 self.struct_list.append(self.model_dictionary[mod_def[' oldname']])307 self.struct_list.append(self.model_dictionary[mod_def['name']]) 309 308 if mod_def['variant_info'] is not None: 310 self.multi_func_list.append(self.model_dictionary[mod_def['oldname']]) 309 self.multi_func_list.append(self.model_dictionary[mod_def['name']]) 310 else: 311 self.model_name_list.append(mod_def['name']) 311 312 if mod_def['ER'] is not None: 312 self.multiplication_factor.append(self.model_dictionary[mod_def[' oldname']])313 self.multiplication_factor.append(self.model_dictionary[mod_def['name']]) 313 314 314 315 #Looking for plugins
Note: See TracChangeset
for help on using the changeset viewer.