source: sasview/DataLoader/plugins/TXT2_Reader.py @ c45976b

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 c45976b was 8d6440f, checked in by Gervaise Alina <gervyh@…>, 16 years ago

readers printing in a log file text_log.txt now.testload modified

  • Property mode set to 100644
File size: 2.6 KB
Line 
1# class Loader  to load any king of file
2import wx
3import string,numpy
4import logging
5class Reader:
6    """
7        This class is loading values from given file or value giving by the user
8        should be able to read only 2 columns of data
9    """
10    ext=['.txt','.dat'] 
11    def _init_(self,x=None,y=None,dx=None,dy=None):
12        # variable to store loaded values
13        self.x = x
14        self.y = y
15        self.dx = dx
16        self.dy = dy
17       
18    def read(self,path, format=None):
19        """ Store the values loaded from file in local variables """
20        if not path == None:
21            read_it = False
22             
23            for item in self.ext:
24                if path.lower().find(item)>=0:
25                    read_it = True
26            #print "this is the flag",read_it, path.lower()
27            if read_it==False:
28                return None
29            else:
30                try:
31                    input_f =  open(path,'r')
32                except :
33                    raise  RuntimeError,"TXT2_Reader cannot open %s"%(path)
34                buff = input_f.read()
35                lines = buff.split('\n')
36                self.x=[]
37                self.y=[]
38                self.dx = [] 
39                self.dy=[]
40                for line in lines:
41                    toks = line.split()
42                    try:
43                        x = float(toks[0])
44                        self.x.append(x)
45                    except:
46                        pass
47                        #print "READ ERROR", line
48                    try:
49                        y = float(toks[1])
50                        self.y.append(y)
51                    except:
52                        pass
53                        #print "READ ERROR", line
54                    try:
55                        dy=float(toks[2])
56                        self.dy.append(dy)
57   
58                    except:
59                        pass
60                        #print "READ ERROR", line
61   
62                if(( self.x==[])or (self.y==[])) or (self.dy !=[]):
63                    #print "went here"
64                    #return value
65                    raise ValueError, "TXT2_Reader can't read %s"%path
66                else:
67                    #msg="R1 reading: \n"+"this x :"+ str(self.x) +"\n"+"this y:"+str(self.y)+"\n"+"this dy :"+str(self.dy)+"\n"
68                    #return msg
69                    logging.info("TXT2_Reader reading  %s\n" %path)
70                    return self.x,self.y,self.dy
71        return None
72   
73       
74   
75if __name__ == "__main__": 
76    read= Reader()
77    read.load("testdata_line.txt")
78   
79           
Note: See TracBrowser for help on using the repository browser.