Changeset 8d6440f in sasview for DataLoader/readers


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/readers
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • 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         
Note: See TracChangeset for help on using the changeset viewer.