[ccb560a] | 1 | import os, sys |
---|
[de9483d] | 2 | import wx |
---|
[81812d9] | 3 | from dataFitting import Data1D, Theory1D |
---|
| 4 | from danse.common.plottools.plottables import Data2D |
---|
| 5 | |
---|
[c7bc3e7] | 6 | from DataLoader.loader import Loader |
---|
[58eac5d] | 7 | |
---|
[de9483d] | 8 | def choose_data_file(parent, location=None): |
---|
| 9 | path = None |
---|
| 10 | if location==None: |
---|
| 11 | location = os.getcwd() |
---|
[c7bc3e7] | 12 | |
---|
| 13 | l = Loader() |
---|
| 14 | cards = l.get_wildcards() |
---|
| 15 | wlist = '|'.join(cards) |
---|
| 16 | |
---|
| 17 | dlg = wx.FileDialog(parent, "Choose a file", location, "", wlist, wx.OPEN) |
---|
[de9483d] | 18 | if dlg.ShowModal() == wx.ID_OK: |
---|
| 19 | path = dlg.GetPath() |
---|
| 20 | mypath = os.path.basename(path) |
---|
| 21 | dlg.Destroy() |
---|
| 22 | |
---|
| 23 | return path |
---|
| 24 | |
---|
| 25 | |
---|
| 26 | def load_ascii_1D(path): |
---|
| 27 | """ |
---|
| 28 | Load a 1D ascii file, with errors |
---|
| 29 | """ |
---|
[fc2b91a] | 30 | import numpy |
---|
[de9483d] | 31 | if path and os.path.isfile(path): |
---|
| 32 | |
---|
[fc2b91a] | 33 | file_x = numpy.zeros(0) |
---|
| 34 | file_y = numpy.zeros(0) |
---|
| 35 | file_dy = numpy.zeros(0) |
---|
[de9483d] | 36 | |
---|
| 37 | input_f = open(path,'r') |
---|
| 38 | buff = input_f.read() |
---|
| 39 | lines = buff.split('\n') |
---|
[fc2b91a] | 40 | |
---|
| 41 | has_dy = False |
---|
| 42 | |
---|
[de9483d] | 43 | for line in lines: |
---|
| 44 | try: |
---|
| 45 | toks = line.split() |
---|
| 46 | x = float(toks[0]) |
---|
| 47 | y = float(toks[1]) |
---|
| 48 | if len(toks)==3: |
---|
[fc2b91a] | 49 | has_dy = True |
---|
[de9483d] | 50 | err = float(toks[2]) |
---|
| 51 | else: |
---|
| 52 | err = 0.0 |
---|
[fc2b91a] | 53 | file_x = numpy.append(file_x, x) |
---|
| 54 | file_y = numpy.append(file_y, y) |
---|
| 55 | file_dy = numpy.append(file_dy, err) |
---|
[de9483d] | 56 | except: |
---|
| 57 | print "READ ERROR", line |
---|
| 58 | |
---|
[fc2b91a] | 59 | if has_dy==False: |
---|
| 60 | file_dy = None |
---|
| 61 | |
---|
[de9483d] | 62 | return file_x, file_y, file_dy |
---|
[fc2b91a] | 63 | return None, None, None |
---|
| 64 | |
---|
| 65 | def plot_data(parent, path, name="Loaded Data"): |
---|
[ccb560a] | 66 | from sans.guicomm.events import NewPlotEvent, StatusEvent |
---|
[7764b41] | 67 | |
---|
[4102709] | 68 | from DataLoader.loader import Loader |
---|
[1c9419f4] | 69 | import numpy |
---|
[4102709] | 70 | #Instantiate a loader |
---|
[81812d9] | 71 | L = Loader() |
---|
[4102709] | 72 | |
---|
| 73 | #Recieves data |
---|
[ccb560a] | 74 | try: |
---|
| 75 | output=L.load(path) |
---|
[81812d9] | 76 | |
---|
[ccb560a] | 77 | except: |
---|
| 78 | wx.PostEvent(parent, StatusEvent(status="Problem loading file: %s" % sys.exc_value)) |
---|
| 79 | return |
---|
[acb1ad1] | 80 | filename = os.path.basename(path) |
---|
[cd84dca] | 81 | |
---|
[81812d9] | 82 | if not output.__class__.__name__=="list": |
---|
| 83 | try: |
---|
| 84 | dxl=output.dxl |
---|
| 85 | dxw=output.dxw |
---|
| 86 | except: |
---|
| 87 | dxl=None |
---|
| 88 | dxw=None |
---|
| 89 | if hasattr(output,'data'): |
---|
[a19cd4d] | 90 | temp = output.err_data |
---|
| 91 | temp[temp==0]=1 |
---|
| 92 | |
---|
| 93 | wx.PostEvent(parent, StatusEvent(status="Loading 2D error bars of 1 \ |
---|
| 94 | created for : %s"% str(temp[temp==0]))) |
---|
| 95 | new_plot = Data2D(image=output.data,err_image=temp, |
---|
[81812d9] | 96 | xmin=output.xmin,xmax=output.xmax, |
---|
| 97 | ymin=output.ymin,ymax=output.ymax) |
---|
| 98 | new_plot.x_bins=output.x_bins |
---|
| 99 | new_plot.y_bins=output.y_bins |
---|
| 100 | #print "data_loader",output |
---|
| 101 | else: |
---|
[e8c96f5] | 102 | #print "output.dx, output.dy",output.dx, output.dy |
---|
[7a7bf55] | 103 | if output.dy ==None: |
---|
[e8c96f5] | 104 | #print "went here theory1D" |
---|
[81812d9] | 105 | new_plot = Theory1D(output.x,output.y, dxl, dxw) |
---|
| 106 | else: |
---|
| 107 | new_plot = Data1D(x=output.x,y=output.y,dy=output.dy, dxl=dxl, dxw=dxw) |
---|
| 108 | #print "dataloader",output[0],output[1] |
---|
| 109 | |
---|
| 110 | new_plot.source=output.source |
---|
[cd84dca] | 111 | new_plot.name = output.filename |
---|
[81812d9] | 112 | new_plot.interactive = True |
---|
[169460a] | 113 | new_plot.id = True |
---|
[81812d9] | 114 | new_plot.info= output |
---|
| 115 | if hasattr(output, "dxl"): |
---|
| 116 | new_plot.dxl = output.dxl |
---|
| 117 | if hasattr(output, "dxw"): |
---|
| 118 | new_plot.dxw = output.dxw |
---|
| 119 | #print "loader output.detector",output.source |
---|
| 120 | new_plot.detector =output.detector |
---|
| 121 | |
---|
| 122 | # If the data file does not tell us what the axes are, just assume... |
---|
| 123 | new_plot.xaxis(output._xaxis,output._xunit) |
---|
| 124 | new_plot.yaxis(output._yaxis,output._yunit) |
---|
[ab8f936] | 125 | new_plot.group_id = output.filename |
---|
| 126 | new_plot.id = output.filename |
---|
[18eba35] | 127 | try: |
---|
| 128 | title=output.filename |
---|
| 129 | except: |
---|
| 130 | title= filename |
---|
| 131 | print "dataloader title", title,output.filename |
---|
| 132 | wx.PostEvent(parent, NewPlotEvent(plot=new_plot, title=str(title))) |
---|
[81812d9] | 133 | else: |
---|
[768656e] | 134 | i=1 |
---|
[81812d9] | 135 | for item in output: |
---|
[cd84dca] | 136 | |
---|
[81812d9] | 137 | try: |
---|
| 138 | dxl=item.dxl |
---|
| 139 | dxw=item.dxw |
---|
| 140 | except: |
---|
| 141 | dxl=None |
---|
| 142 | dxw=None |
---|
[7a7bf55] | 143 | if item.dy ==None: |
---|
[81812d9] | 144 | new_plot = Theory1D(item.x,item.y,dxl,dxw) |
---|
| 145 | else: |
---|
| 146 | new_plot = Data1D(x=item.x,y=item.y,dy=item.dy,dxl=dxl,dxw=dxw) |
---|
| 147 | |
---|
| 148 | new_plot.source=item.source |
---|
[ac9a5f6] | 149 | #new_plot.info=output |
---|
[cd84dca] | 150 | new_plot.name = str(item.run[0]) |
---|
[81812d9] | 151 | new_plot.interactive = True |
---|
[169460a] | 152 | |
---|
[81812d9] | 153 | #print "loader output.detector",output.source |
---|
| 154 | new_plot.detector =item.detector |
---|
| 155 | # If the data file does not tell us what the axes are, just assume... |
---|
| 156 | new_plot.xaxis(item._xaxis,item._xunit) |
---|
| 157 | new_plot.yaxis(item._yaxis,item._yunit) |
---|
[ab8f936] | 158 | new_plot.group_id = str(item.run[0]) |
---|
| 159 | new_plot.id = str(item.run[0]) |
---|
[18eba35] | 160 | if hasattr(item,"title"): |
---|
| 161 | title= item.title |
---|
| 162 | else: |
---|
| 163 | title= str(item.run[0]) |
---|
| 164 | wx.PostEvent(parent, NewPlotEvent(plot=new_plot, title=str(title))) |
---|
[768656e] | 165 | i+=1 |
---|
[81812d9] | 166 | |
---|
| 167 | |
---|