Ignore:
Timestamp:
Aug 2, 2017 4:58:22 AM (7 years ago)
Author:
lewis
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.2.2, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
3a81cd9
Parents:
f26b7c1
Message:

Display warning when ISIS 2D ASCII data is loaded

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/sascalc/dataloader/readers/ascii_reader.py

    r080d88e rf994e8b1  
    108108                    is_data = True 
    109109 
     110                if is_data and new_lentoks >= 8: 
     111                    msg = "This data looks like 2D ASCII data. Use the file " 
     112                    msg += "converter tool to convert it to NXcanSAS." 
     113                    raise FileContentsException(msg) 
     114 
    110115                # To remember the # of columns on the current line 
    111116                # for the next line of data 
     
    125130                # Reset # of lines of data candidates 
    126131                candidate_lines = 0 
    127  
     132         
    128133        if not is_data: 
    129134            self.set_all_to_none() 
Note: See TracChangeset for help on using the changeset viewer.