Changeset 3aed0eb in sasview
- Timestamp:
- Apr 10, 2009 9:57:47 PM (16 years ago)
- 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:
- 27eba36
- Parents:
- 272b107
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
DataLoader/readers/ascii_reader.py
r272b107 r3aed0eb 110 110 _y = float(toks[1]) 111 111 112 #To reject the line when reader meets less columns of data113 #if lentoks == 3:114 # _dy = float(toks[2])115 #elif lentoks == 4:116 # _dx = float(toks[3])117 118 112 #Reset the header line counters 119 113 if j == j1: … … 175 169 new_lentoks = len(toks) 176 170 177 #If the previous columns are less thanthe current, mark the previous as non-data and reset the dependents.171 #If the previous columns not equal to the current, mark the previous as non-data and reset the dependents. 178 172 if lentoks != new_lentoks : 179 173 if is_data == True:
Note: See TracChangeset
for help on using the changeset viewer.