source: sasview/park_integration/test/Loader.py @ c14c503

ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalccostrafo411magnetic_scattrelease-4.1.1release-4.1.2release-4.2.2release_4.0.1ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since c14c503 was 4a0536a, checked in by Gervaise Alina <gervyh@…>, 16 years ago

some work done.only our fit is working.thing about hoe to make the engine_fit method…learning about the other fit

  • Property mode set to 100644
File size: 2.7 KB
RevLine 
[4a0536a]1# class Loader  to load any king of file
2import wx
3import string,numpy
4class Load:
5    """
6        This class is loading values from given file or value giving by the user
7    """
8   
9    def _init_(self,x=None,y=None,dx=None,dy=None):
10        # variable to store loaded values
11        self.x = x
12        self.y = y
13        self.dx = dx
14        self.dy = dy
15        self.filename=None
16       
17    def set_filename(self,path=None):
18        """
19            Store path into a variable.If the user doesn't give a path as a parameter a pop-up
20            window appears to select the file.
21            @param path: the path given by the user
22        """
23        if path == None:
24            dlg = wx.FileDialog(self, "Choose a file", os.getcwd(), "", "*.txt", wx.OPEN)
25            if dlg.ShowModal() == wx.ID_OK:
26                path = dlg.GetPath()
27            dlg.Destroy()
28        self.filename = path
29           
30       
31    def get_filename(self):
32        """ return the file's path"""
33        return self.filename
34    def set_values(self):
35        """ Store the values loaded from file in local variables """
36        if not self.filename == None:
37            input_f =  open(self.filename,'r')
38            buff = input_f.read()
39            lines = buff.split('\n')
40            self.x=[]
41            self.y=[]
42            self.dx = [] 
43            self.dy=[]
44            for line in lines:
45                try:
46                    toks = line.split()
47                    x = float(toks[0])
48                    y = float(toks[1])
49                    dy = float(toks[2])
50                   
51                    self.x.append(x)
52                    self.y.append(y)
53                    self.dy.append(dy)
54                    self.dx = numpy.zeros(len(self.x))
55                except:
56                    print "READ ERROR", line
57           
58           
59            # Sanity check
60            if not len(self.x) == len(self.dx):
61                raise ValueError, "x and dx have different length"
62            if not len(self.y) == len(self.dy):
63                raise ValueError, "y and dy have different length"
64           
65     
66           
67    def get_values(self):
68        """ Return x, y, dx, dy """
69        return self.x,self.y,self.dx,self.dy
70   
71    def load_data(self,data):
72        """ Return plottable """
73        #load data
74        data.x = self.x
75        data.y = self.y
76        data.dx = self.dx
77        data.dy =self.dy
78        #Load its View class
79        #plottable.reset_view()
80       
81   
82if __name__ == "__main__": 
83    load= Load()
84    load.set_filename("testdata_line.txt")
85    print load.get_filename() 
86    load.set_values()
87    print load.get_values()
88   
89           
Note: See TracBrowser for help on using the repository browser.