Changeset 196608d in sasview for guiframe


Ignore:
Timestamp:
Jan 6, 2010 6:18:56 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:
4d270706
Parents:
2389bd4
Message:

code style change very minor shouldn't affect anything

File:
1 edited

Legend:

Unmodified
Added
Removed
  • guiframe/data_loader.py

    re5664f2 r196608d  
    77def choose_data_file(parent, location=None): 
    88    path = None 
    9     if location==None: 
     9    if location == None: 
    1010        location = os.getcwd() 
    1111     
     
    5151                else: 
    5252                    errdy = 0.0 
    53                 if len(toks)==4: 
     53                if len(toks) == 4: 
    5454                    has_dx = True 
    5555                    errdx = float(toks[3]) 
     
    6363                print "READ ERROR", line 
    6464     
    65         if has_dy==False: 
     65        if has_dy == False: 
    6666            file_dy = None 
    67         if has_dx==False: 
     67        if has_dx == False: 
    6868            file_dx = None 
    6969             
     
    100100    # Load data  
    101101    try: 
    102         output=L.load(path) 
     102        output = L.load(path) 
    103103    except: 
    104104        load_error(sys.exc_value) 
     
    112112    filename = os.path.basename(path) 
    113113     
    114     if not  output.__class__.__name__=="list": 
     114    if not  output.__class__.__name__ == "list": 
    115115        ## Creating a Data2D with output 
    116116        if hasattr(output,'data'): 
    117             new_plot = Data2D(image=None,err_image=None) 
     117            new_plot = Data2D(image=None, err_image=None) 
    118118       
    119119        else: 
    120             msg="Loading 1D data: " 
    121             wx.PostEvent(parent, StatusEvent(status= "%s %s"%(msg, output.filename))) 
    122             new_plot = Data1D(x=[], y=[], dx=None,dy= None) 
     120            msg = "Loading 1D data: " 
     121            wx.PostEvent(parent, StatusEvent(status="%s %s"%(msg, output.filename))) 
     122            new_plot = Data1D(x=[], y=[], dx=None, dy=None) 
    123123             
    124124        new_plot.copy_from_datainfo(output)  
     
    126126       
    127127        ## data 's name 
    128         if output.filename==None or output.filename=="": 
     128        if output.filename is None or output.filename == "": 
    129129            output.filename = str(filename) 
    130130        ## name of the data allow to differentiate data when plotted 
    131         name= output.filename 
     131        name = output.filename 
    132132        if not name in parent.indice_load_data.keys(): 
    133             parent.indice_load_data[name]=0 
     133            parent.indice_load_data[name] = 0 
    134134        else: 
    135135            ## create a copy of the loaded data 
    136             parent.indice_load_data[name]+=1 
     136            parent.indice_load_data[name] += 1 
    137137            name = name +"[%i]"%parent.indice_load_data[name] 
    138138        
     
    145145        ##group_id specify on which panel to plot this data 
    146146        new_plot.group_id = name 
    147         new_plot.is_data =True 
     147        new_plot.is_data = True 
    148148        ##post data to plot 
    149149        if hasattr(new_plot,"title"): 
    150             title= str(new_plot.title) 
    151             if title =="": 
    152                 title=str(name) 
     150            title = str(new_plot.title) 
     151            if title == "": 
     152                title = str(name) 
    153153        else: 
    154154            title = str(name) 
    155         wx.PostEvent(parent, NewPlotEvent(plot=new_plot, title= title )) 
     155        wx.PostEvent(parent, NewPlotEvent(plot=new_plot, title=title )) 
    156156         
    157157    ## the output of the loader is a list , some xml files contain more than one data 
     
    160160        for item in output: 
    161161            try: 
    162                 dx=item.dx 
    163                 dxl=item.dxl 
    164                 dxw=item.dxw 
     162                dx = item.dx 
     163                dxl = item.dxl 
     164                dxw = item.dxw 
    165165            except: 
    166                 dx=None 
    167                 dxl=None 
    168                 dxw=None 
     166                dx = None 
     167                dxl = None 
     168                dxw = None 
    169169 
    170170            new_plot = Data1D(x=item.x,y=item.y,dx=dx,dy=item.dy) 
     
    174174            new_plot.dxw = dxw 
    175175            
    176             name= str(item.run[0]) 
     176            name = str(item.run[0]) 
    177177            if not name in parent.indice_load_data.keys(): 
    178                 parent.indice_load_data[name]=0 
     178                parent.indice_load_data[name] = 0 
    179179            else: 
    180180                ## create a copy of the loaded data 
     
    185185                # counter arguments stronger? Is this feature developed 
    186186                # to please at least 80% of the users or a special few? 
    187                 parent.indice_load_data[name]+=1 
    188                 name = name +"(copy %i)"%parent.indice_load_data[name] 
     187                parent.indice_load_data[name] += 1 
     188                name = name + "(copy %i)"%parent.indice_load_data[name] 
    189189                 
    190190            new_plot.name = name 
     
    196196            new_plot.is_data =True 
    197197            if hasattr(item,"title"): 
    198                 title= item.title 
    199                 if title=="": 
    200                     title=str(name) 
     198                title = item.title 
     199                if title == "": 
     200                    title = str(name) 
    201201            else: 
    202                 title= name 
     202                title = name 
    203203            wx.PostEvent(parent, NewPlotEvent(plot=new_plot, title=str(title))) 
    204204            i+=1 
Note: See TracChangeset for help on using the changeset viewer.