Changeset 4342fed0 in sasview for src/sas/sasgui/plottools/plottables.py
- Timestamp:
- Apr 9, 2017 8:09:12 AM (8 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.2.2, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- fca1f50
- Parents:
- 5b2b04d (diff), 45dffa69 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - git-author:
- Paul Butler <butlerpd@…> (04/09/17 08:09:12)
- git-committer:
- GitHub <noreply@…> (04/09/17 08:09:12)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/sasgui/plottools/plottables.py
r9c0f3c17 r45dffa69 229 229 if p.hidden == True: 230 230 continue 231 if not p.x ==None:231 if p.x is not None: 232 232 for x_i in p.x: 233 if min_value ==None or x_i < min_value:233 if min_value is None or x_i < min_value: 234 234 min_value = x_i 235 if max_value ==None or x_i > max_value:235 if max_value is None or x_i > max_value: 236 236 max_value = x_i 237 237 return min_value, max_value … … 562 562 Returns True if there is no data stored in the plottable 563 563 """ 564 if not self.x == None and len(self.x) == 0 \565 and not self.y == None and len(self.y) == 0:564 if (self.x is not None and len(self.x) == 0 565 and self.y is not None and len(self.y) == 0): 566 566 return True 567 567 return False … … 679 679 # Sanity check 680 680 # Do the transofrmation only when x and y are empty 681 has_err_x = not (dx ==None or len(dx) == 0)682 has_err_y = not (dy ==None or len(dy) == 0)683 684 if(x != None) and (y !=None):685 if not dx ==None and not len(dx) == 0 and not len(x) == len(dx):681 has_err_x = not (dx is None or len(dx) == 0) 682 has_err_y = not (dy is None or len(dy) == 0) 683 684 if(x is not None) and (y is not None): 685 if dx is not None and not len(dx) == 0 and not len(x) == len(dx): 686 686 msg = "Plottable.View: Given x and dx are not" 687 687 msg += " of the same length" … … 693 693 raise ValueError, msg 694 694 695 if not dy ==None and not len(dy) == 0 and not len(y) == len(dy):695 if dy is not None and not len(dy) == 0 and not len(y) == len(dy): 696 696 msg = "Plottable.View: Given y and dy are not of the same " 697 697 msg += "length: len(y)=%s, len(dy)=%s" % (len(y), len(dy)) … … 797 797 tempy = [] 798 798 tempdy = [] 799 if self.dx ==None:799 if self.dx is None: 800 800 self.dx = np.zeros(len(self.x)) 801 if self.dy ==None:801 if self.dy is None: 802 802 self.dy = np.zeros(len(self.y)) 803 803 if self.xLabel == "log10(x)": … … 827 827 tempy = [] 828 828 tempdy = [] 829 if self.dx ==None:829 if self.dx is None: 830 830 self.dx = np.zeros(len(self.x)) 831 if self.dy ==None:831 if self.dy is None: 832 832 self.dy = np.zeros(len(self.y)) 833 833 if self.yLabel == "log10(y)": … … 860 860 tempy = [] 861 861 tempdy = [] 862 if self.dx ==None:862 if self.dx is None: 863 863 self.dx = np.zeros(len(self.x)) 864 if self.dy ==None:864 if self.dy is None: 865 865 self.dy = np.zeros(len(self.y)) 866 if xmin != None and xmax !=None:866 if xmin is not None and xmax is not None: 867 867 for i in range(len(self.x)): 868 868 if self.x[i] >= xmin and self.x[i] <= xmax: … … 1206 1206 """ 1207 1207 """ 1208 if self._chisq ==None:1208 if self._chisq is None: 1209 1209 chisqTxt = r'$\chi^2=$' 1210 1210 else:
Note: See TracChangeset
for help on using the changeset viewer.