Changeset 8d6440f in sasview


Ignore:
Timestamp:
Jul 9, 2008 6:05:49 PM (16 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:
c45976b
Parents:
8dac49d
Message:

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

Location:
DataLoader
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • DataLoader/loader.py

    r94daf8a r8d6440f  
    9494                dir='readers' 
    9595             
    96             if reader==None and  ext==None:#1st load 
     96            if (reader==None and  ext==None) or dir:#1st load 
    9797                plugReader=None 
    9898                if os.path.isdir(dir): 
  • DataLoader/plugins/TXT2_Reader.py

    r1b0b3ca r8d6440f  
    22import wx 
    33import string,numpy 
     4import logging 
    45class Reader: 
    56    """ 
     
    2728                return None 
    2829            else: 
    29                 input_f =  open(path,'r') 
     30                try: 
     31                    input_f =  open(path,'r') 
     32                except : 
     33                    raise  RuntimeError,"TXT2_Reader cannot open %s"%(path) 
    3034                buff = input_f.read() 
    3135                lines = buff.split('\n') 
     
    6367                    #msg="R1 reading: \n"+"this x :"+ str(self.x) +"\n"+"this y:"+str(self.y)+"\n"+"this dy :"+str(self.dy)+"\n" 
    6468                    #return msg 
    65                     print "TXT2_Reader reading  %s\n" %path 
     69                    logging.info("TXT2_Reader reading  %s\n" %path) 
    6670                    return self.x,self.y,self.dy 
    6771        return None 
  • DataLoader/plugins/TXT3_Reader.py

    r1b0b3ca r8d6440f  
    22import wx 
    33import string,numpy 
     4import logging 
    45class Reader: 
    56    """ 
     
    3132                return None 
    3233            else: 
    33                 input_f =  open(path,'r') 
     34                try: 
     35                    input_f =  open(path,'r') 
     36                except : 
     37                    raise  RuntimeError,"TXT3_Reader cannot open %s"%(path) 
    3438                buff = input_f.read() 
    3539                lines = buff.split('\n') 
     
    6569                    #msg="txtReader  Reading:\n"+"this x :"+ str(self.x) +"\n"+"this y:"+str(self.y)+"\n"+"this dy :"+str(self.dy)+"\n" 
    6670                    #return msg 
    67                     print "TXT3_Reader reading %s \n" %path 
     71                    logging.info ("TXT3_Reader reading %s \n" %(path)) 
    6872                    return self.x,self.y,self.dy 
    6973                 
  • DataLoader/readers/IgorReader.py

    r2fd516b r8d6440f  
    22import pylab 
    33from copy import deepcopy 
    4 import math 
     4import math,logging 
    55class Reader: 
    66    """ Simple data reader for Igor data files """ 
     
    165165        self.center_x = center_x 
    166166        self.center_y = center_y 
    167         print "IgorReader reading %s"%self.file 
     167        logging.info("IgorReader reading %s"%self.file) 
    168168        return Z, xmin-xstep/2.0, xmax+xstep/2.0, ymin-ystep/2.0, ymax+ystep/2.0 
    169169      
  • DataLoader/readers/TXT2_Reader.py

    r8dac49d r8d6440f  
    11# class Loader  to load any king of file 
    22import wx 
    3 import string,numpy 
     3import string,numpy,logging 
    44class Reader: 
    55    """ 
     
    2727                return None 
    2828            else: 
    29                 input_f =  open(path,'r') 
     29                try: 
     30                    input_f =  open(path,'r') 
     31                except : 
     32                    raise  RuntimeError,"TXT2_Reader cannot open %s"%(path) 
    3033                buff = input_f.read() 
    3134                lines = buff.split('\n') 
     
    6366                    #msg="R1 reading: \n"+"this x :"+ str(self.x) +"\n"+"this y:"+str(self.y)+"\n"+"this dy :"+str(self.dy)+"\n" 
    6467                    #return msg 
    65                     print "TXT2_Reader reading  %s\n" %path 
     68                    logging.info("TXT2_Reader reading  %s\n" %path) 
    6669                    return self.x,self.y,self.dy 
    6770        return None 
  • DataLoader/readers/TXT3_Reader.py

    r1b0b3ca r8d6440f  
    11# class Loader  to load any king of file 
    22import wx 
    3 import string,numpy 
     3import string,numpy,logging 
    44class Reader: 
    55    """ 
     
    3131                return None 
    3232            else: 
    33                 input_f =  open(path,'r') 
     33                try: 
     34                    input_f =  open(path,'r') 
     35                except : 
     36                    raise  RuntimeError,"TXT3_Reader cannot open %s"%(path) 
    3437                buff = input_f.read() 
    3538                lines = buff.split('\n') 
     
    6568                    #msg="txtReader  Reading:\n"+"this x :"+ str(self.x) +"\n"+"this y:"+str(self.y)+"\n"+"this dy :"+str(self.dy)+"\n" 
    6669                    #return msg 
    67                     print "TXT3_Reader reading %s \n" %path 
     70                    logging.info("TXT3_Reader reading %s \n" %path) 
    6871                    return self.x,self.y,self.dy 
    6972                 
  • DataLoader/readers/danse_reader.py

    rc125e0c r8d6440f  
    77import copy 
    88import numpy 
     9import logging 
    910class ReaderInfo: 
    1011    """ 
     
    6162                 
    6263        if read_it: 
    63              
    64             datafile = open(filename, 'r') 
     64            try: 
     65                 datafile = open(filename, 'r') 
     66            except : 
     67                raise  RuntimeError,"danse_reader cannot open %s"%(filename) 
     68             
    6569             
    6670            # defaults 
     
    126130                            error.append(err) 
    127131                        except: 
    128                             print "Skipping line:%s" % data_str 
    129                             print sys.exc_value 
     132                            logging.info("Skipping line:%s,%s" %( data_str,sys.exc_value)) 
     133                            #print "Skipping line:%s" % data_str 
     134                            #print sys.exc_value 
    130135             
    131136            # Initialize  
     
    209214                raise ValueError,"Danse_reader can't read this file %s"%filename 
    210215            else: 
    211                 print "Danse_reader Reading %s \n"%filename 
     216                logging.info("Danse_reader Reading %s \n"%filename) 
    212217                return output 
    213218         
  • DataLoader/readers/tiff_reader.py

    r3dd7cce r8d6440f  
    11 
    22import Image 
    3 import math 
     3import math,logging 
    44class ReaderInfo: 
    55    """ 
     
    4646         
    4747    def read(self, filename=None): 
     48        print "in tiff" 
    4849        """ 
    4950            Open and read the data in a file 
     
    144145            output.image      = Z 
    145146            output.pixel_size = pixel 
    146                  
     147            logging.info("tiff_reader reading %s"%(filename)) 
     148             
    147149            return output 
    148150         
  • DataLoader/test/testLoad.py

    r94daf8a r8d6440f  
    104104        data=self.L.load('MP_New.sans') 
    105105         
    106         self.assertEqual(data.__class__,danse_reader.ReaderInfo) 
     106        self.assertEqual(data.wavelength,7.5) 
    107107         
    108108        #tested corrupted file.sans 
     
    112112           logging.error(str(msg)) 
    113113        #else: raise ValueError,"No error raised for missing extension" 
     114         
    114115    def testload5(self): 
    115116        """ Testing loading image file""" 
    116117        data=self.L.load('angles_flat.png') 
    117         self.assertEqual(data.__class__,tiff_reader.ReaderInfo) 
     118        self.assertEqual(data.xbins ,200) 
    118119         
    119120    def testload6(self): 
    120121        """test file with unknown extension""" 
    121122        try:self.L.load('hello.missing') 
    122         except ValueError,msg: 
     123        except RuntimeError,msg: 
    123124           self.assertEqual( str(msg),"Unknown file type '.missing'") 
    124125        else: raise ValueError,"No error raised for missing extension" 
     
    126127        #self.L.lookup('hello.missing') 
    127128        try: self.L.lookup('hello.missing') 
    128         except ValueError,msg: 
     129        except RuntimeError,msg: 
    129130           self.assertEqual( str(msg),"Unknown file type '.missing'") 
    130131        else: raise ValueError,"No error raised for missing extension" 
Note: See TracChangeset for help on using the changeset viewer.