Changeset 86ab3f2 in sasview
- Timestamp:
- Jun 19, 2011 1:25:45 PM (13 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:
- 309a1f0
- Parents:
- 58c90ba
- Location:
- sansview/perspectives/fitting
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sansview/perspectives/fitting/fitpage.py
r9112910e r86ab3f2 1893 1893 if cov[ind]!=None : 1894 1894 if numpy.isfinite(float(cov[ind])): 1895 print "cov[ind]",cov[ind]1896 1895 val_err = format_number(cov[ind], True) 1897 1896 if not self.is_mac: … … 1905 1904 if has_error: 1906 1905 if not self.text2_3.IsShown(): 1907 self.text2_3.Show(True) 1908 print "err" 1906 self.text2_3.Show(True) 1909 1907 ## save current state 1910 1908 self.save_current_state() -
sansview/perspectives/fitting/fitting.py
r58c90ba r86ab3f2 537 537 538 538 """ 539 print "data.__class__.__name__",data.__class__.__name__540 539 if data.__class__.__name__ == "Data1D" or not enable2D: 541 540 ## draw model 1D with no loaded data … … 1527 1526 try: 1528 1527 from model_thread import Calc1D 1528 print "a" 1529 1529 ## If a thread is already started, stop it 1530 1530 if (self.calc_1D is not None) and self.calc_1D.isrunning(): … … 1542 1542 #updatefn = self._update1D, 1543 1543 update_chisqr=update_chisqr) 1544 1544 print "b" 1545 1545 self.calc_1D.queue() 1546 1546 print "c" 1547 1547 except: 1548 1548 msg = " Error occurred when drawing %s Model 1D: " % model.name
Note: See TracChangeset
for help on using the changeset viewer.