Changeset 1518 for trunk/GSASIIpwdGUI.py


Ignore:
Timestamp:
Oct 6, 2014 10:16:26 AM (9 years ago)
Author:
vondreele
Message:

Add metadata file processing for Image stress/strain data - reads sample load & sample phi from text file.
Correction to PWDR metadata file processing

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIIpwdGUI.py

    r1515 r1518  
    16061606                        S = File.readline()
    16071607                        continue
    1608                     S.replace(',',' ')
    1609                     S.replace('\t',' ')
    1610                     Stuff = S[:-1].split(' ')
     1608                    S = S.replace(',',' ').replace('\t',' ')
     1609                    Stuff = S[:-1].split()
    16111610                    itemNames.append(Stuff[0])
    16121611                    newItems.append(Stuff[1:])
Note: See TracChangeset for help on using the changeset viewer.