Changeset 3b909b7 in sasview


Ignore:
Timestamp:
Feb 12, 2009 2:09:16 PM (15 years ago)
Author:
Gervaise Alina <gervyh@…>
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:
ef8b580
Parents:
31e3298
Message:

allow annulus to plot no matter the order of the circle
boxslicer draw given data boundaries

Location:
guiframe/local_perspectives/plotting
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • guiframe/local_perspectives/plotting/AnnulusSlicer.py

    r0bd125d r3b909b7  
    117117         
    118118        from DataLoader.manipulations import SectorPhi 
    119         radius = self.qmax#math.sqrt(math.pow(self.qmax,2)+math.pow(self.qmax,2)) 
    120         rmin= math.fabs(self.inner_circle.get_radius()) 
    121         rmax = math.fabs(self.outer_circle.get_radius()) 
    122         phi_min=-math.pi 
    123         phi_max=math.pi 
    124         phimi=phi_min+math.pi 
    125         phima=phi_max+math.pi 
    126         sect = SectorPhi(r_min=rmin , r_max= rmax, phi_min=phimi, phi_max=phima) 
     119        #radius = self.qmax#math.sqrt(math.pow(self.qmax,2)+math.pow(self.qmax,2)) 
     120        rmin= min(math.fabs(self.inner_circle.get_radius()), 
     121                  math.fabs(self.outer_circle.get_radius())) 
     122        rmax = max(math.fabs(self.inner_circle.get_radius()), 
     123                   math.fabs(self.outer_circle.get_radius())) 
     124        print "rmin, rmax", rmin, rmax 
     125        
     126        sect = SectorPhi(r_min=rmin , r_max= rmax, phi_min=0, phi_max=2*math.pi) 
    127127        if nbins!=None: 
    128128            sect.nbins = nbins 
  • guiframe/local_perspectives/plotting/boxSlicer.py

    r30ae3bb r3b909b7  
    3030        self.qmax = self.base.data2D.xmax 
    3131        self.connect = self.base.connect 
    32         self.x= x_max 
    33         self.y= y_max 
    34                  
     32        self.x= 0.5*min(math.fabs(self.base.data2D.xmax),math.fabs( self.base.data2D.xmin)) 
     33        self.y= 0.5*min(math.fabs(self.base.data2D.xmax),math.fabs( self.base.data2D.xmin))         
     34          
    3535        self.theta2= math.pi/3 
    3636        ## Number of points on the plot 
  • guiframe/local_perspectives/plotting/boxSum.py

    r0bd2cd8 r3b909b7  
    156156        y_min= self.vertical_lines.y2 
    157157        y_max= self.vertical_lines.y1 
     158        print "xmin, xmax, ymin , ymax", x_min, x_max, y_min, y_max 
    158159        box =  Boxavg (x_min=x_min, x_max=x_max, y_min=y_min, y_max=y_max) 
    159160        self.count, self.error = box(self.base.data2D) 
    160         #print "count, error",self.count, self.error 
     161        print "box_sum output",box(self.base.data2D) 
    161162                           
    162163    def moveend(self, ev): 
Note: See TracChangeset for help on using the changeset viewer.