Ignore:
Timestamp:
Jan 14, 2009 12:04:11 AM (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:
d1dd9d4
Parents:
47d10a2
Message:

boxaveraging still bugging on set_params

File:
1 edited

Legend:

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

    rac9a5f6 r0f6d05f8  
    394394        self.onClearSlicer(event) 
    395395        wx.PostEvent(self.parent, InternalEvent(slicer= BoxSum)) 
    396         from BoxParameters import SlicerParameterPanel 
     396        from SlicerParameters import SlicerParameterPanel 
    397397        
    398398        dialog = SlicerParameterPanel(self.parent, -1, "Slicer Parameters") 
     
    448448        wx.PostEvent(self.parent, StatusEvent(status="Image is in %s scale"%self.scale)) 
    449449         
    450          
    451          
    452          
    453         
     450        """      
     451            #TODO: this name should be changed to something more appropriate 
     452            # Don't forget that changing this name will mean changing code 
     453            # in plotting.py 
     454              
     455            # Update the plottable with the new data 
     456             
     457            #TODO: we should have a method to do this,  
     458            #      something along the lines of: 
     459            #      plottable1.update_data_from_plottable(plottable2) 
     460             
     461            self.plots[event.plot.name].xmin = event.plot.xmin 
     462            self.plots[event.plot.name].xmax = event.plot.xmax 
     463            self.plots[event.plot.name].ymin = event.plot.ymin 
     464            self.plots[event.plot.name].ymax = event.plot.ymax 
     465            self.plots[event.plot.name].data = event.plot.data 
     466            self.plots[event.plot.name].err_data = event.plot.err_data 
     467        """ 
Note: See TracChangeset for help on using the changeset viewer.