1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
|
#/*##########################################################################
# Copyright (C) 2004-2012 European Synchrotron Radiation Facility
#
# This file is part of the PyMca X-ray Fluorescence Toolkit developed at
# the ESRF by the Software group.
#
# This toolkit is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the Free
# Software Foundation; either version 2 of the License, or (at your option)
# any later version.
#
# PyMca is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
# details.
#
# You should have received a copy of the GNU General Public License along with
# PyMca; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# PyMca follows the dual licensing model of Riverbank's PyQt and cannot be
# used as a free plugin for a non-free program.
#
# Please contact the ESRF industrial unit (industry@esrf.fr) if this license
# is a problem for you.
#############################################################################*/
import sys
import posixpath
try:
from PyMca import PyMcaQt as qt
from PyMca import DataObject
from PyMca.QNexusWidget import *
from PyMca import QStackWidget
from PyMca import HDF5Stack1D
except ImportError:
print("PyMcaNexusWidget importing from directory")
import PyMcaQt as qt
import DataObject
from QNexusWidget import *
import QStackWidget
import HDF5Stack1D
import h5py
DEBUG=0
class PyMcaNexusWidget(QNexusWidget):
def __init__(self, *var, **kw):
QNexusWidget.__init__(self, *var, **kw)
def itemRightClickedSlot(self, ddict):
filename = ddict['file']
name = ddict['name']
if ddict['dtype'].startswith('|S') or\
ddict['dtype'].startswith('|O'):
#handle a right click on a dataset of string type
return self.showInfoWidget(filename, name, False)
pass
elif ddict['dtype'] == '':
#handle a right click on a group
return self.showInfoWidget(filename, name, False)
else:
#handle a right click on a numeric dataset
_hdf5WidgetDatasetMenu = qt.QMenu(self)
_hdf5WidgetDatasetMenu.addAction(QString("Add to selection table"),
self._addToSelectionTable)
_hdf5WidgetDatasetMenu.addAction(QString("Show Information"),
self._showInfoWidgetSlot)
fileIndex = self.data.sourceName.index(filename)
phynxFile = self.data._sourceObjectList[fileIndex]
info = self.getInfo(phynxFile, name)
interpretation = info.get('interpretation', "")
stack1D = False
stack2D = False
nDim = len(ddict['shape'].split('x'))
if nDim > 1:
stack1D = True
if nDim == 3:
stack2D = True
if interpretation.lower() in ['image']:
stack1D = False
if interpretation.lower() in ['spectrum']:
stack2D = False
if stack1D:
_hdf5WidgetDatasetMenu.addAction(QString("Show as 1D Stack"),
self._stack1DSignal)
_hdf5WidgetDatasetMenu.addAction(QString("Load and show as 1D Stack"),
self._loadStack1DSignal)
if stack2D:
_hdf5WidgetDatasetMenu.addAction(QString("Show as 2D Stack"),
self._stack2DSignal)
_hdf5WidgetDatasetMenu.addAction(QString("Load and show as 2D Stack"),
self._loadStack2DSignal)
self._lastDatasetDict = ddict
_hdf5WidgetDatasetMenu.exec_(qt.QCursor.pos())
self._lastDatasetDict= None
return
def _stack1DSignal(self):
if DEBUG:
print("_stack1DSignal")
self._stackSignal(index=-1, load=False)
def _loadStack1DSignal(self):
if DEBUG:
print("_stack1DSignal")
self._stackSignal(index=-1, load=True)
def _loadStack2DSignal(self):
if DEBUG:
print("_loadStack2DSignal")
self._stackSignal(index=0, load=True)
def _stack2DSignal(self, load=False):
if DEBUG:
print("_stack2DSignal")
self._stackSignal(index=0, load=False)
def _stackSignal(self, index=-1, load=False):
ddict = self._lastDatasetDict
filename = ddict['file']
name = ddict['name']
sel = {}
sel['SourceName'] = self.data.sourceName * 1
sel['SourceType'] = "HDF5"
fileIndex = self.data.sourceName.index(filename)
phynxFile = self.data._sourceObjectList[fileIndex]
title = filename + " " + name
sel['selection'] = {}
sel['selection']['sourcename'] = filename
#single dataset selection
scanlist = None
sel['selection']['x'] = []
sel['selection']['y'] = [name]
sel['selection']['m'] = []
sel['selection']['index'] = index
self._checkWidgetDict()
widget = QStackWidget.QStackWidget()
widget.setWindowTitle(title)
widget.notifyCloseEventToWidget(self)
#different ways to fill the stack
if h5py.version.version < '2.0':
useInstance = True
else:
useInstance = False
groupName = posixpath.dirname(name)
if useInstance:
#this crashes with h5py 1.x
#this way it is not loaded into memory unless requested
#and cannot crash because same instance is used
stack = phynxFile[name]
else:
#create a new instance
phynxFile = h5py.File(filename, 'r')
stack = phynxFile[name]
# try to find out the "energy" axis
axesList = []
xData = None
try:
group = phynxFile[groupName]
if 'axes' in stack.attrs.keys():
axes = stack.attrs['axes']
if sys.version > '2.9':
try:
axes = axes.decode('utf-8')
except:
print("WARNING: Cannot decode axes")
axes = axes.split(":")
for axis in axes:
if axis in group.keys():
axesList.append(posixpath.join(groupName, axis))
if len(axesList):
xData = phynxFile[axesList[index]].value
except:
# I cannot afford this Nexus specific things
# to break the generic HDF5 functionality
if DEBUG:
raise
axesList = []
#the only problem is that, if the shape is not of type (a, b, c),
#it will not be possible to reshape it. In that case I have to
#actually read the values
nDim = len(stack.shape)
if (load) or (nDim != 3):
stack = stack.value
shape = stack.shape
if index == 0:
#Stack of images
n = 1
for dim in shape[:-2]:
n = n * dim
stack.shape = n, shape[-2], shape[-1]
if len(axesList):
if xData.size != n:
xData = None
else:
#stack of mca
n = 1
for dim in shape[:-1]:
n = n * dim
if nDim != 3:
stack.shape = 1, n, shape[-1]
if len(axesList):
if xData.size != shape[-1]:
xData = None
#index equal -1 should be able to handle it
#if not, one would have to uncomment next line
#index = 2
actualStack = DataObject.DataObject()
actualStack.data = stack
if xData is not None:
actualStack.x = [xData]
widget.setStack(actualStack, mcaindex=index)
wid = id(widget)
self._lastWidgetId = wid
self._widgetDict[wid] = widget
widget.show()
if __name__ == "__main__":
try:
#this is to add the 3D buttons ...
from PyMca import Object3D
except:
#not a big deal for this tests
pass
app = qt.QApplication(sys.argv)
w = PyMcaNexusWidget()
if 0:
w.setFile(sys.argv[1])
else:
import NexusDataSource
dataSource = NexusDataSource.NexusDataSource(sys.argv[1:])
w.setDataSource(dataSource)
def addSelection(sel):
print(sel)
def removeSelection(sel):
print(sel)
def replaceSelection(sel):
print(sel)
w.show()
qt.QObject.connect(w, qt.SIGNAL("addSelection"), addSelection)
qt.QObject.connect(w, qt.SIGNAL("removeSelection"), removeSelection)
qt.QObject.connect(w, qt.SIGNAL("replaceSelection"), replaceSelection)
sys.exit(app.exec_())
|