Changeset 3473
- Timestamp:
- Jul 15, 2018 9:26:01 PM (5 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIdataGUI.py
r3462 r3473 7568 7568 ''' 7569 7569 if G2frame.PickIdText == G2frame.GetTreeItemsList(item): # don't redo the current data tree item 7570 if GSASIIpath.GetConfigValue('debug'): print('Skipping SelectDataTreeItem as G2frame.PickIdText unchanged') 7570 7571 return 7571 7572 -
trunk/imports/G2img_GE.py
r3472 r3473 36 36 def __init__(self): 37 37 super(self.__class__,self).__init__( # fancy way to self-reference 38 extensionlist=('.sum','.cor','. avg','.ge','.ge1','.ge2','.ge3','.ge4','.ge5'),38 extensionlist=('.sum','.cor','.cor32','.avg','.ge','.ge1','.ge2','.ge3','.ge4','.ge5'), 39 39 strictExtension=True, 40 40 formatName = 'GE image', … … 132 132 time0 = time.time() 133 133 File = open(filename,'rb') 134 if filename.split('.')[-1] in ['sum', ]:135 head = ['GE detector sum 134 if filename.split('.')[-1] in ['sum','cor32']: 135 head = ['GE detector sum/corrected data from APS 1-ID',] 136 136 sizexy = [2048,2048] 137 137 Npix = sizexy[0]*sizexy[1]
Note: See TracChangeset
for help on using the changeset viewer.