Changeset a2573fc in sasview for src/sas/sascalc/dataloader
- Timestamp:
- Apr 5, 2017 5:40:15 AM (8 years ago)
- Children:
- 65e61c1
- Parents:
- 3d6c010
- Location:
- src/sas/sascalc/dataloader/readers
- Files:
-
- 4 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/sascalc/dataloader/readers/cansas_reader.py
r3d6c010 ra2573fc 263 263 elif tagname == 'I' and isinstance(self.current_dataset, plottable_1D): 264 264 unit_list = unit.split("|") 265 265 266 if len(unit_list) > 1: 266 267 self.current_dataset.yaxis(unit_list[0].strip(), … … 268 269 else: 269 270 self.current_dataset.yaxis("Intensity", unit) 271 270 272 self.current_dataset.y = np.append(self.current_dataset.y, data_point) 273 print data_point 274 271 275 elif tagname == 'Idev' and isinstance(self.current_dataset, plottable_1D): 272 276 self.current_dataset.dy = np.append(self.current_dataset.dy, data_point) 277 273 278 elif tagname == 'Q': 274 279 unit_list = unit.split("|")
Note: See TracChangeset
for help on using the changeset viewer.