Changeset eddb6ec in sasview for src/sans/perspectives/fitting/pagestate.py
- Timestamp:
- Apr 2, 2014 5:25:09 AM (11 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:
- 6771d94
- Parents:
- 8817d07
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sans/perspectives/fitting/pagestate.py
r44f7c1b reddb6ec 17 17 import logging 18 18 import numpy 19 import string 19 20 20 21 import xml.dom.minidom 21 from xml.dom.minidom import parse22 22 from lxml import etree 23 23 … … 193 193 ##page name 194 194 self.page_name = "" 195 # Contains link between model ,all its parameters, and panel organization195 # Contains link between model, all its parameters, and panel organization 196 196 self.parameters = [] 197 197 # String parameter list that can not be fitted … … 205 205 ## orientation parameters 206 206 self.orientation_params = [] 207 ## orientation par maters for gaussian dispersity207 ## orientation parameters for gaussian dispersity 208 208 self.orientation_params_disp = [] 209 209 ## smearer info … … 216 216 self.dxl = None 217 217 self.dxw = None 218 #list of dispersion param aters218 #list of dispersion parameters 219 219 self.disp_list = [] 220 220 if self.model is not None: … … 600 600 : param figs: list of pylab figures [list] 601 601 """ 602 from report_dialog import ReportDialog602 from sans.perspectives.fitting.report_dialog import ReportDialog 603 603 # get the strings for report 604 604 html_str, text_str, title = self.set_report_string() … … 630 630 dialog.ShowModal() 631 631 632 def _toXML_helper(self, list, element, newdoc):632 def _toXML_helper(self, thelist, element, newdoc): 633 633 """ 634 634 Helper method to create xml file for saving state 635 635 """ 636 for item in list:636 for item in thelist: 637 637 sub_element = newdoc.createElement('parameter') 638 638 sub_element.setAttribute('name', str(item[1]))
Note: See TracChangeset
for help on using the changeset viewer.