Ignore:
Timestamp:
Apr 4, 2013 4:16:09 PM (11 years ago)
Author:
smk78
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:
6a84c0c
Parents:
240bdc80
Message:

Fix to Ticket #101; Modified Slicer Panel for Box Sum to display total sum and number of points summed; renamed captions for values accordingly

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sansguiframe/src/sans/guiframe/local_perspectives/plotting/boxSum.py

    r8c61e14 rd555416  
    5353        self.count = 0 
    5454        self.error = 0 
     55        self.total = 0 
     56        self.totalerror = 0 
     57        self.points = 0 
    5558        ## Flag to determine if the current figure has moved 
    5659        ## set to False == no motion , set to True== motion 
     
    182185        box =  Boxavg(x_min=x_min, x_max=x_max, y_min=y_min, y_max=y_max) 
    183186        self.count, self.error = box(self.base.data2D) 
     187        # Dig out number of points summed, SMK & PDB, 04/03/2013 
     188        from sans.dataloader.manipulations import Boxsum 
     189        boxtotal =  Boxsum(x_min=x_min, x_max=x_max, y_min=y_min, y_max=y_max) 
     190        self.total, self.totalerror, self.points = boxtotal(self.base.data2D) 
    184191         
    185192    def moveend(self, ev): 
     
    229236        params["center_x"] = self.center.x 
    230237        params["center_y"] = self.center.y 
    231         params["count"] = self.count 
    232         params["errors"] = self.error 
     238        params["num_points"] = self.points 
     239        params["avg"] = self.count 
     240        params["avg_error"] = self.error 
     241        params["sum"] = self.total 
     242        params["sum_error"] = self.totalerror 
    233243        return params 
    234244     
     
    238248        """ 
    239249        result = {} 
    240         result["count"] = self.count 
    241         result["error"] = self.error 
     250        result["num_points"] = self.points 
     251        result["avg"] = self.count 
     252        result["avg_error"] = self.error 
     253        params["sum"] = self.total 
     254        params["sum_error"] = self.totalerror 
    242255        return result 
    243256         
Note: See TracChangeset for help on using the changeset viewer.