tomwer 1.3.0.dev2__py3-none-any.whl → 1.3.0rc10__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- orangecontrib/tomwer/widgets/__init__.py +11 -12
- orangecontrib/tomwer/widgets/control/DataListenerOW.py +6 -6
- orangecontrib/tomwer/widgets/control/DataValidatorOW.py +6 -6
- orangecontrib/tomwer/widgets/control/NXTomomillMixIn.py +3 -3
- orangecontrib/tomwer/widgets/control/NXTomomillOW.py +10 -8
- orangecontrib/tomwer/widgets/control/SingleTomoObjOW.py +6 -6
- orangecontrib/tomwer/widgets/debugtools/DatasetGeneratorOW.py +1 -1
- orangecontrib/tomwer/widgets/icat/RawDataScreenshotCreatorOW.py +98 -98
- orangecontrib/tomwer/widgets/icat/SaveToGalleryAndPublishOW.py +129 -129
- orangecontrib/tomwer/widgets/reconstruction/AxisOW.py +13 -12
- orangecontrib/tomwer/widgets/reconstruction/SAAxisOW.py +11 -9
- orangecontrib/tomwer/widgets/reconstruction/SADeltaBetaOW.py +11 -9
- orangecontrib/tomwer/widgets/reconstruction/SinoNormOW.py +12 -15
- orangecontrib/tomwer/widgets/visualization/DataViewerOW.py +9 -9
- orangecontrib/tomwer/widgets/visualization/DiffViewerOW.py +1 -1
- orangecontrib/tomwer/widgets/visualization/SinogramViewerOW.py +0 -1
- tomwer/__main__.py +0 -10
- tomwer/app/canvas_launcher/config.py +3 -3
- tomwer/app/canvas_launcher/environ.py +1 -0
- tomwer/app/intensitynormalization.py +12 -11
- tomwer/app/nabuapp.py +0 -11
- tomwer/app/zstitching.py +11 -1
- tomwer/core/process/control/datalistener/datalistener.py +15 -10
- tomwer/core/process/control/nxtomomill.py +1 -1
- tomwer/core/process/control/scantransfer.py +8 -32
- tomwer/core/process/edit/darkflatpatch.py +8 -9
- tomwer/core/process/edit/imagekeyeditor.py +20 -22
- tomwer/core/process/icat/screenshots.py +1 -0
- tomwer/core/process/reconstruction/axis/axis.py +263 -59
- tomwer/core/process/reconstruction/axis/mode.py +161 -50
- tomwer/core/process/reconstruction/axis/params.py +23 -20
- tomwer/core/process/reconstruction/darkref/darkrefs.py +12 -13
- tomwer/core/process/reconstruction/nabu/castvolume.py +3 -3
- tomwer/core/process/reconstruction/nabu/nabucommon.py +43 -19
- tomwer/core/process/reconstruction/nabu/nabuscores.py +34 -7
- tomwer/core/process/reconstruction/nabu/nabuslices.py +81 -26
- tomwer/core/process/reconstruction/nabu/nabuvolume.py +31 -26
- tomwer/core/process/reconstruction/nabu/plane.py +9 -0
- tomwer/core/process/reconstruction/nabu/utils.py +32 -9
- tomwer/core/process/reconstruction/saaxis/saaxis.py +4 -1
- tomwer/core/process/reconstruction/sadeltabeta/sadeltabeta.py +9 -1
- tomwer/core/process/reconstruction/scores/params.py +3 -3
- tomwer/core/process/reconstruction/test/test_darkref_copy.py +4 -4
- tomwer/core/process/stitching/nabustitcher.py +11 -10
- tomwer/core/process/task.py +33 -27
- tomwer/core/process/test/test_axis.py +7 -6
- tomwer/core/process/test/test_data_transfer.py +3 -3
- tomwer/core/process/test/test_nabu.py +10 -2
- tomwer/core/process/test/test_normalization.py +2 -2
- tomwer/core/scan/blissscan.py +3 -3
- tomwer/core/scan/edfscan.py +9 -9
- tomwer/core/scan/nxtomoscan.py +11 -11
- tomwer/core/scan/scanbase.py +31 -24
- tomwer/core/scan/test/test_future_scan.py +1 -1
- tomwer/core/scan/test/test_h5.py +4 -4
- tomwer/core/scan/test/test_process_registration.py +2 -2
- tomwer/core/scan/test/test_scan.py +1 -75
- tomwer/core/settings.py +3 -3
- tomwer/core/test/test_utils.py +2 -2
- tomwer/core/volume/edfvolume.py +6 -6
- tomwer/core/volume/hdf5volume.py +6 -6
- tomwer/core/volume/jp2kvolume.py +6 -6
- tomwer/core/volume/rawvolume.py +6 -6
- tomwer/core/volume/tiffvolume.py +12 -12
- tomwer/gui/cluster/slurm.py +14 -9
- tomwer/gui/cluster/supervisor.py +12 -0
- tomwer/gui/cluster/test/test_cluster.py +1 -2
- tomwer/gui/cluster/test/test_supervisor.py +1 -1
- tomwer/gui/control/datalist.py +5 -0
- tomwer/gui/control/datawatcher/controlwidget.py +2 -4
- tomwer/gui/control/reducedarkflatselector.py +8 -8
- tomwer/gui/control/test/test_single_tomo_obj.py +1 -1
- tomwer/gui/edit/dkrfpatch.py +4 -4
- tomwer/gui/edit/nxtomowarmer.py +2 -2
- tomwer/gui/edit/test/test_dkrf_patch.py +6 -6
- tomwer/gui/imagefromfile.py +2 -2
- tomwer/gui/qfolderdialog.py +5 -0
- tomwer/gui/reconstruction/axis/CompareImages.py +94 -168
- tomwer/gui/reconstruction/axis/radioaxis.py +58 -182
- tomwer/gui/reconstruction/darkref/darkrefwidget.py +2 -1
- tomwer/gui/reconstruction/nabu/castvolume.py +8 -1
- tomwer/gui/reconstruction/nabu/nabuconfig/reconstruction.py +54 -21
- tomwer/gui/reconstruction/normalization/intensity.py +3 -25
- tomwer/gui/reconstruction/saaxis/corrangeselector.py +1 -1
- tomwer/gui/reconstruction/saaxis/saaxis.py +1 -11
- tomwer/gui/reconstruction/sadeltabeta/saadeltabeta.py +0 -10
- tomwer/gui/reconstruction/scores/scoreplot.py +1 -6
- tomwer/gui/reconstruction/test/test_axis.py +18 -4
- tomwer/gui/reconstruction/test/test_nabu.py +3 -0
- tomwer/gui/stitching/stitching.py +2 -2
- tomwer/gui/stitching/stitching_preview.py +7 -53
- tomwer/gui/stitching/stitching_raw.py +3 -3
- tomwer/gui/utils/inputwidget.py +12 -2
- tomwer/gui/utils/lineselector/lineselector.py +1 -1
- tomwer/gui/visualization/dataviewer.py +47 -17
- tomwer/gui/visualization/sinogramviewer.py +19 -26
- tomwer/gui/visualization/test/test_volumeviewer.py +64 -66
- tomwer/gui/visualization/volumeviewer.py +105 -105
- tomwer/io/utils/h5pyutils.py +7 -3
- tomwer/io/utils/utils.py +3 -3
- tomwer/resources/gui/icons/parameters.svg +1 -1
- tomwer/resources/gui/illustrations/no_rot.svg +1 -1
- tomwer/synctools/stacks/edit/darkflatpatch.py +17 -12
- tomwer/tests/test_scripts.py +0 -3
- tomwer/third_part/WaitingOverlay.py +110 -0
- tomwer/third_part/__init__.py +0 -0
- tomwer/version.py +2 -2
- {tomwer-1.3.0.dev2.dist-info → tomwer-1.3.0rc10.dist-info}/METADATA +32 -31
- {tomwer-1.3.0.dev2.dist-info → tomwer-1.3.0rc10.dist-info}/RECORD +115 -153
- {tomwer-1.3.0.dev2.dist-info → tomwer-1.3.0rc10.dist-info}/WHEEL +1 -1
- orangecontrib/tomwer/widgets/reconstruction/TofuOW.py +0 -197
- orangecontrib/tomwer/widgets/reconstruction/icons/XY_lamino.svg +0 -168
- orangecontrib/tomwer/widgets/reconstruction/icons/XZ_lamino.svg +0 -275
- orangecontrib/tomwer/widgets/reconstruction/icons/YZ_lamino.svg +0 -182
- tomwer/app/lamino.py +0 -143
- tomwer/core/process/reconstruction/lamino/__init__.py +0 -1
- tomwer/core/process/reconstruction/lamino/tofu.py +0 -1000
- tomwer/core/process/test/test_lamino.py +0 -76
- tomwer/core/test/test_lamino.py +0 -92
- tomwer/gui/reconstruction/lamino/__init__.py +0 -31
- tomwer/gui/reconstruction/lamino/tofu/TofuOptionLoader.py +0 -107
- tomwer/gui/reconstruction/lamino/tofu/__init__.py +0 -1
- tomwer/gui/reconstruction/lamino/tofu/misc.py +0 -148
- tomwer/gui/reconstruction/lamino/tofu/projections.py +0 -896
- tomwer/gui/reconstruction/lamino/tofu/settings.py +0 -75
- tomwer/gui/reconstruction/lamino/tofu/tofu.py +0 -432
- tomwer/gui/reconstruction/lamino/tofu/tofuexpert.py +0 -567
- tomwer/gui/reconstruction/lamino/tofu/tofuoutput.py +0 -757
- tomwer/gui/reconstruction/test/test_lamino.py +0 -194
- tomwer/resources/gui/icons/lamino_parameters.svg +0 -70
- tomwer/resources/gui/illustrations/lamino_angle.png +0 -0
- tomwer/resources/gui/illustrations/lamino_angle.svg +0 -509
- tomwer/resources/gui/illustrations/lamino_beta_angle.png +0 -0
- tomwer/resources/gui/illustrations/lamino_beta_angle.svg +0 -97
- tomwer/resources/gui/illustrations/lamino_theta_angle.png +0 -0
- tomwer/resources/gui/illustrations/lamino_theta_angle.svg +0 -368
- tomwer/resources/gui/illustrations/manual_slice.png +0 -0
- tomwer/resources/gui/illustrations/manual_slice.svg +0 -221
- tomwer/resources/gui/illustrations/psi_angle.png +0 -0
- tomwer/resources/gui/illustrations/psi_angle.svg +0 -479
- tomwer/resources/gui/illustrations/rotation_center.png +0 -0
- tomwer/resources/gui/illustrations/rotation_center.svg +0 -276
- tomwer/resources/gui/illustrations/slice_stack.png +0 -0
- tomwer/resources/gui/illustrations/slice_stack.svg +0 -266
- tomwer/resources/gui/illustrations/xy_slice.png +0 -0
- tomwer/resources/gui/illustrations/xy_slice.svg +0 -269
- tomwer/resources/gui/illustrations/xz_slice.png +0 -0
- tomwer/resources/gui/illustrations/xz_slice.svg +0 -270
- tomwer/resources/gui/illustrations/yz_slice.png +0 -0
- tomwer/resources/gui/illustrations/yz_slice.svg +0 -270
- tomwer/synctools/stacks/reconstruction/lamino.py +0 -233
- /tomwer-1.3.0.dev2-py3.11-nspkg.pth → /tomwer-1.3.0rc10-py3.11-nspkg.pth +0 -0
- {tomwer-1.3.0.dev2.dist-info → tomwer-1.3.0rc10.dist-info}/LICENSE +0 -0
- {tomwer-1.3.0.dev2.dist-info → tomwer-1.3.0rc10.dist-info}/entry_points.txt +0 -0
- {tomwer-1.3.0.dev2.dist-info → tomwer-1.3.0rc10.dist-info}/namespace_packages.txt +0 -0
- {tomwer-1.3.0.dev2.dist-info → tomwer-1.3.0rc10.dist-info}/top_level.txt +0 -0
@@ -1,194 +0,0 @@
|
|
1
|
-
# coding: utf-8
|
2
|
-
# /*##########################################################################
|
3
|
-
#
|
4
|
-
# Copyright (c) 2017 European Synchrotron Radiation Facility
|
5
|
-
#
|
6
|
-
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
7
|
-
# of this software and associated documentation files (the "Software"), to deal
|
8
|
-
# in the Software without restriction, including without limitation the rights
|
9
|
-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
10
|
-
# copies of the Software, and to permit persons to whom the Software is
|
11
|
-
# furnished to do so, subject to the following conditions:
|
12
|
-
#
|
13
|
-
# The above copyright notice and this permission notice shall be included in
|
14
|
-
# all copies or substantial portions of the Software.
|
15
|
-
#
|
16
|
-
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
17
|
-
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
18
|
-
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
19
|
-
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
20
|
-
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
21
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
22
|
-
# THE SOFTWARE.
|
23
|
-
#
|
24
|
-
# ###########################################################################*/
|
25
|
-
__authors__ = ["H. Payno"]
|
26
|
-
__license__ = "MIT"
|
27
|
-
__date__ = "16/06/2021"
|
28
|
-
|
29
|
-
|
30
|
-
import os
|
31
|
-
import shutil
|
32
|
-
import tempfile
|
33
|
-
import unittest
|
34
|
-
|
35
|
-
import pytest
|
36
|
-
from silx.gui import qt
|
37
|
-
|
38
|
-
from tomwer.core import settings
|
39
|
-
from tomwer.gui.reconstruction.lamino.tofu import TofuWindow
|
40
|
-
from tomwer.tests.datasets import TomwerCIDatasets
|
41
|
-
from tomwer.tests.utils import skip_gui_test
|
42
|
-
|
43
|
-
|
44
|
-
@pytest.mark.skipif(skip_gui_test(), reason="skip gui test")
|
45
|
-
class TestLamino(unittest.TestCase):
|
46
|
-
"""Test the TofuWidget"""
|
47
|
-
|
48
|
-
def setUp(self):
|
49
|
-
super().setUp()
|
50
|
-
self._window = TofuWindow(parent=None)
|
51
|
-
self._widget = self._window._mainWidget
|
52
|
-
# add a dark.edf file and a darkHSTFile
|
53
|
-
self._folder = tempfile.mkdtemp()
|
54
|
-
|
55
|
-
def tearDown(self):
|
56
|
-
super().tearDown()
|
57
|
-
self._window.setAttribute(qt.Qt.WA_DeleteOnClose)
|
58
|
-
self._window.close()
|
59
|
-
shutil.rmtree(self._folder)
|
60
|
-
|
61
|
-
def testSetup(self):
|
62
|
-
"""Make sure the widget is correctly setting parameters from a scan"""
|
63
|
-
dataset = TomwerCIDatasets.get_dataset(
|
64
|
-
"edf_datasets/test01",
|
65
|
-
)
|
66
|
-
self._window.loadFromScan(dataset)
|
67
|
-
reconsParams = self._widget.getParameters()
|
68
|
-
# check general information
|
69
|
-
# note : the .info file is incorrect
|
70
|
-
self.assertTrue(self._widget._tabs._inputWidget.getNumber() == 1)
|
71
|
-
self.assertTrue(reconsParams["number"] == 1)
|
72
|
-
# check flat field correction is set
|
73
|
-
ffcWidget = self._widget._tabs._inputWidget.widget._ffcWidget
|
74
|
-
thFlats = os.path.join(dataset, "refHST0000.edf")
|
75
|
-
self.assertTrue(ffcWidget.getFlats() == thFlats)
|
76
|
-
self.assertTrue(reconsParams["flats"] == thFlats)
|
77
|
-
thSecondFlats = os.path.join(dataset, "refHST0010.edf")
|
78
|
-
self.assertTrue(ffcWidget.getSecondFlats() == thSecondFlats)
|
79
|
-
self.assertTrue(reconsParams["flats2"] == thSecondFlats)
|
80
|
-
thDarks = os.path.join(dataset, "darkend0000.edf")
|
81
|
-
self.assertTrue(ffcWidget.getDarks() == thDarks)
|
82
|
-
self.assertTrue(reconsParams["darks"] == thDarks)
|
83
|
-
|
84
|
-
inputWidget = self._widget._tabs._inputWidget.widget
|
85
|
-
self.assertTrue(inputWidget.rotationAngle._overallAngle.getAngle() == 180.0)
|
86
|
-
self.assertTrue(inputWidget.rotationAngle._axisAngleY.getAngle() == 0.0)
|
87
|
-
self.assertTrue(inputWidget.rotationAngle._axisAngleZ.getAngle() == 0.0)
|
88
|
-
|
89
|
-
def testSetupWithLockedParams(self):
|
90
|
-
"""Make sure lockers are corrcetly taking into account"""
|
91
|
-
# check flat field correction is set
|
92
|
-
|
93
|
-
inputWidget = self._widget._tabs._inputWidget.widget
|
94
|
-
inputWidget.rotationAngle._overallAngle.setAngle(12.0)
|
95
|
-
inputWidget.rotationAngle._overallAngle.lock()
|
96
|
-
|
97
|
-
inputWidget.rotationAngle._axisAngleY.setAngle(-26.0)
|
98
|
-
inputWidget.rotationAngle._axisAngleY.lock()
|
99
|
-
|
100
|
-
inputWidget.rotationAngle._axisAngleZ.setAngle(63.5)
|
101
|
-
inputWidget.rotationAngle._axisAngleZ.lock()
|
102
|
-
|
103
|
-
outputWidget = self._widget._tabs._outputWidget
|
104
|
-
outputWidget.setOutput("toto")
|
105
|
-
outputWidget.lockOutput()
|
106
|
-
|
107
|
-
dataset = TomwerCIDatasets.get_dataset(
|
108
|
-
"edf_datasets/test01",
|
109
|
-
)
|
110
|
-
self._window.loadFromScan(dataset)
|
111
|
-
|
112
|
-
self.assertTrue(inputWidget.rotationAngle._overallAngle.getAngle() == 12.0)
|
113
|
-
self.assertTrue(inputWidget.rotationAngle._axisAngleY.getAngle() == -26.0)
|
114
|
-
self.assertTrue(inputWidget.rotationAngle._axisAngleZ.getAngle() == 63.5)
|
115
|
-
|
116
|
-
self.assertTrue(outputWidget.getOutput() == "toto")
|
117
|
-
|
118
|
-
def testEditionDisplay(self):
|
119
|
-
"""
|
120
|
-
Test that edition of parameters by the user are taking into account
|
121
|
-
"""
|
122
|
-
displayWidget = self._widget._tabs._inputWidget.widget.rotationAngle
|
123
|
-
# angles
|
124
|
-
displayWidget._laminoAngle.setAngle(12.0)
|
125
|
-
self.assertTrue(self._widget.getParameters()["axis-angle-x"] == 12.0)
|
126
|
-
displayWidget._axisAngleY.setAngle(10.0)
|
127
|
-
self.assertTrue(self._widget.getParameters()["axis-angle-y"] == 10.0)
|
128
|
-
|
129
|
-
# regions
|
130
|
-
regionWidget = self._widget._tabs._outputWidget._region
|
131
|
-
regionWidget._xRegion._regionLE.setText("0")
|
132
|
-
self.assertTrue(self._widget.getParameters()["x-region"] == (0, -1, 1))
|
133
|
-
regionWidget.setYRegion(10, 12, 25)
|
134
|
-
self.assertTrue(self._widget.getParameters()["y-region"] == (10, 12, 25))
|
135
|
-
|
136
|
-
# make sure saving and loading is correct
|
137
|
-
savingFile = os.path.join(self._folder, "savingFile.ini")
|
138
|
-
self._widget.saveTo(savingFile)
|
139
|
-
self.assertTrue(os.path.exists(savingFile))
|
140
|
-
regionWidget.setYRegion(10, 12, 22)
|
141
|
-
self.assertTrue(self._widget.getParameters()["y-region"] == (10, 12, 22))
|
142
|
-
self._widget.loadFile(savingFile)
|
143
|
-
self.assertTrue(self._widget.getParameters()["y-region"] == (10, 12, 25))
|
144
|
-
|
145
|
-
def testOutputWidget(self):
|
146
|
-
"""test behavior of the output widget and link with get and set
|
147
|
-
parameters"""
|
148
|
-
outputWidget = self._widget._tabs._outputWidget
|
149
|
-
# volume angles
|
150
|
-
outputWidget._volumeAngleGrp.setAngles(0, 20, -36.0)
|
151
|
-
reconsParams = self._widget.getParameters()
|
152
|
-
self.assertTrue(reconsParams["volume-angle-x"] == 0)
|
153
|
-
self.assertTrue(reconsParams["volume-angle-y"] == 20.0)
|
154
|
-
self.assertTrue(reconsParams["volume-angle-z"] == -36.0)
|
155
|
-
|
156
|
-
def testCenteringWidget(self):
|
157
|
-
"""test behavior of the centering widget and link with get and set
|
158
|
-
parameters"""
|
159
|
-
centeringWidget = self._widget._tabs._inputWidget.widget.centeringWidget
|
160
|
-
centeringWidget._xCenterLE.setText("12")
|
161
|
-
centeringWidget._yCenterLE.setText("2")
|
162
|
-
self.assertTrue(self._widget.getParameters()["center-position-x"] == 12.0)
|
163
|
-
self.assertTrue(self._widget.getParameters()["center-position-z"] == 2.0)
|
164
|
-
|
165
|
-
def testForceLbsRam(self):
|
166
|
-
"""Test the behavior of the forcelbsram option"""
|
167
|
-
scan1 = tempfile.mkdtemp(suffix="1")
|
168
|
-
self._window.loadFromScan(scan1)
|
169
|
-
_end = os.path.join("1", "xySlice")
|
170
|
-
self.assertTrue(self._window.getParameters()["output"].endswith(_end))
|
171
|
-
|
172
|
-
self._window._mainWidget._tabs._outputWidget.lockOutput()
|
173
|
-
scan2 = tempfile.mkdtemp(suffix="2")
|
174
|
-
self._window.loadFromScan(scan2)
|
175
|
-
_end = os.path.join("1", "xySlice")
|
176
|
-
self.assertTrue(self._window.getParameters()["output"].endswith(_end))
|
177
|
-
|
178
|
-
self._window._mainWidget._tabs._outputWidget.lockOutput(False)
|
179
|
-
self._window.loadFromScan(scan2)
|
180
|
-
_end = os.path.join("2", "xySlice")
|
181
|
-
self.assertTrue(self._window.getParameters()["output"].endswith(_end))
|
182
|
-
|
183
|
-
self._window._mainWidget._tabs._outputWidget.setForceLbsram(True)
|
184
|
-
self.assertTrue(
|
185
|
-
self._window.getParameters()["output"].startswith(
|
186
|
-
settings.get_lbsram_path()
|
187
|
-
)
|
188
|
-
)
|
189
|
-
self._window.loadFromScan(scan1)
|
190
|
-
self.assertTrue(
|
191
|
-
self._window.getParameters()["output"].startswith(
|
192
|
-
settings.get_lbsram_path()
|
193
|
-
)
|
194
|
-
)
|
@@ -1,70 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
-
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
3
|
-
|
4
|
-
<svg
|
5
|
-
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
6
|
-
xmlns:cc="http://creativecommons.org/ns#"
|
7
|
-
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
8
|
-
xmlns:svg="http://www.w3.org/2000/svg"
|
9
|
-
xmlns="http://www.w3.org/2000/svg"
|
10
|
-
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
11
|
-
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
12
|
-
width="48px"
|
13
|
-
height="48px"
|
14
|
-
id="svg2985"
|
15
|
-
version="1.1"
|
16
|
-
inkscape:version="0.48.5 r10040"
|
17
|
-
sodipodi:docname="lamino_parameters.svg"
|
18
|
-
inkscape:export-filename="/nobackup/linazimov/payno/dev/esrf/ID06/id06workflow/resources/gui/icons/input.png"
|
19
|
-
inkscape:export-xdpi="200"
|
20
|
-
inkscape:export-ydpi="200">
|
21
|
-
<defs
|
22
|
-
id="defs2987" />
|
23
|
-
<sodipodi:namedview
|
24
|
-
id="base"
|
25
|
-
pagecolor="#ffffff"
|
26
|
-
bordercolor="#666666"
|
27
|
-
borderopacity="1.0"
|
28
|
-
inkscape:pageopacity="0.0"
|
29
|
-
inkscape:pageshadow="2"
|
30
|
-
inkscape:zoom="7"
|
31
|
-
inkscape:cx="0.42857143"
|
32
|
-
inkscape:cy="24"
|
33
|
-
inkscape:current-layer="layer1"
|
34
|
-
showgrid="true"
|
35
|
-
inkscape:grid-bbox="true"
|
36
|
-
inkscape:document-units="px"
|
37
|
-
inkscape:window-width="1920"
|
38
|
-
inkscape:window-height="1098"
|
39
|
-
inkscape:window-x="0"
|
40
|
-
inkscape:window-y="31"
|
41
|
-
inkscape:window-maximized="1" />
|
42
|
-
<metadata
|
43
|
-
id="metadata2990">
|
44
|
-
<rdf:RDF>
|
45
|
-
<cc:Work
|
46
|
-
rdf:about="">
|
47
|
-
<dc:format>image/svg+xml</dc:format>
|
48
|
-
<dc:type
|
49
|
-
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
50
|
-
<dc:title></dc:title>
|
51
|
-
</cc:Work>
|
52
|
-
</rdf:RDF>
|
53
|
-
</metadata>
|
54
|
-
<g
|
55
|
-
id="layer1"
|
56
|
-
inkscape:label="Layer 1"
|
57
|
-
inkscape:groupmode="layer">
|
58
|
-
<g
|
59
|
-
id="surface1"
|
60
|
-
transform="matrix(0.91430392,0,0,0.88285849,0.42325717,3.0002197)"
|
61
|
-
inkscape:export-filename="/nobackup/linazimov/payno/dev/esrf/ID06/id06workflow/resources/gui/icons/parameters.png"
|
62
|
-
inkscape:export-xdpi="200"
|
63
|
-
inkscape:export-ydpi="200">
|
64
|
-
<path
|
65
|
-
id="path3157"
|
66
|
-
d="M 40.25,0 C 39.902344,-0.0117188 39.566406,0.15625 39.375,0.46875 L 37.78125,3.0625 c -0.539062,-0.042969 -1.058594,-0.046875 -1.59375,0 L 34.5625,0.5 C 34.300781,0.0859375 33.761719,-0.0625 33.3125,0.125 L 30.5,1.3125 C 30.054688,1.5 29.796875,1.996094 29.90625,2.46875 l 0.6875,2.96875 C 30.179688,5.792969 29.789063,6.175781 29.4375,6.59375 l -2.96875,-0.6875 c -0.484375,-0.109375 -0.941406,0.171875 -1.125,0.625 L 24.1875,9.375 c -0.183594,0.449219 -0.03516,0.960938 0.375,1.21875 l 2.5625,1.59375 c -0.04297,0.542969 -0.01953,1.113281 0.03125,1.65625 l -2.5625,1.59375 c -0.414062,0.261719 -0.566406,0.800781 -0.375,1.25 l 1.1875,2.8125 c 0.1875,0.445313 0.652344,0.707031 1.125,0.59375 L 29.5,19.4375 c 0.351563,0.410156 0.738281,0.777344 1.15625,1.125 L 30,23.53125 c -0.105469,0.476563 0.140625,0.972656 0.59375,1.15625 l 2.84375,1.15625 c 0.121094,0.05078 0.25,0.0625 0.375,0.0625 0.335938,0 0.65625,-0.171875 0.84375,-0.46875 l 1.65625,-2.59375 c 0.542969,0.03906 1.089844,0.01953 1.625,-0.03125 l 1.65625,2.59375 c 0.265625,0.40625 0.773438,0.5625 1.21875,0.375 l 2.84375,-1.1875 c 0.453125,-0.191406 0.675781,-0.679687 0.5625,-1.15625 L 43.5,20.46875 c 0.402344,-0.347656 0.78125,-0.746094 1.125,-1.15625 l 3,0.65625 c 0.484375,0.105469 0.972656,-0.144531 1.15625,-0.59375 l 1.15625,-2.84375 c 0.183594,-0.457031 0.01172,-0.996094 -0.40625,-1.25 l -2.625,-1.59375 c 0.03906,-0.53125 0.04687,-1.0625 0,-1.59375 l 2.5625,-1.6875 C 49.875,10.144531 50.0625,9.632813 49.875,9.1875 L 48.65625,6.375 C 48.46875,5.925781 47.984375,5.667969 47.5,5.78125 L 44.53125,6.5 C 44.179688,6.089844 43.820313,5.722656 43.40625,5.375 l 0.625,-3 C 44.132813,1.898438 43.886719,1.402344 43.4375,1.21875 L 40.59375,0.0625 C 40.480469,0.015625 40.367188,0.00390625 40.25,0 z M 37,8.875 c 0.53125,-0.00781 1.070313,0.070313 1.59375,0.28125 2.09375,0.851563 3.101563,3.25 2.25,5.34375 -0.851562,2.09375 -3.25,3.101563 -5.34375,2.25 C 33.40625,15.898438 32.398438,13.5 33.25,11.40625 33.890625,9.835938 35.40625,8.898438 37,8.875 z M 14.53125,17 c -0.488281,0 -0.921875,0.359375 -1,0.84375 l -0.625,3.9375 c -0.742187,0.226563 -1.476562,0.515625 -2.15625,0.875 L 7.5,20.34375 c -0.398437,-0.285156 -0.933594,-0.25 -1.28125,0.09375 l -2.75,2.75 C 3.125,23.53125 3.097656,24.070313 3.375,24.46875 L 5.65625,27.75 C 5.289063,28.4375 4.980469,29.160156 4.75,29.90625 l -3.90625,0.625 C 0.359375,30.613281 0,31.042969 0,31.53125 l 0,3.875 c 0,0.484375 0.335938,0.914063 0.8125,1 L 4.75,37.09375 C 4.980469,37.839844 5.289063,38.5625 5.65625,39.25 l -2.3125,3.25 c -0.285156,0.398438 -0.253906,0.933594 0.09375,1.28125 l 2.75,2.75 C 6.53125,46.875 7.070313,46.902344 7.46875,46.625 L 10.75,44.34375 c 0.683594,0.363281 1.382813,0.648438 2.125,0.875 l 0.65625,3.9375 c 0.07813,0.480469 0.511719,0.84375 1,0.84375 l 3.875,0 c 0.484375,0 0.914063,-0.335937 1,-0.8125 l 0.6875,-4 c 0.742188,-0.230469 1.445313,-0.511719 2.125,-0.875 l 3.3125,2.3125 c 0.398438,0.277344 0.9375,0.25 1.28125,-0.09375 l 2.75,-2.75 c 0.347656,-0.347656 0.378906,-0.914062 0.09375,-1.3125 l -2.34375,-3.25 c 0.359375,-0.679687 0.648438,-1.394531 0.875,-2.125 l 4,-0.6875 C 32.667969,36.32031 33,35.890625 33,35.40625 l 0,-3.875 C 33,31.042969 32.640625,30.640625 32.15625,30.5625 L 28.1875,29.90625 c -0.226562,-0.730469 -0.515625,-1.445312 -0.875,-2.125 l 2.3125,-3.3125 c 0.277344,-0.398437 0.25,-0.9375 -0.09375,-1.28125 l -2.75,-2.75 C 26.433594,20.089844 25.898438,20.058594 25.5,20.34375 l -3.28125,2.34375 c -0.683594,-0.363281 -1.386719,-0.648437 -2.125,-0.875 l -0.6875,-3.96875 C 19.324219,17.363281 18.890625,17 18.40625,17 z M 16.5,28.34375 c 2.855469,0 5.15625,2.300781 5.15625,5.15625 0,2.855469 -2.304687,5.15625 -5.15625,5.15625 -2.851562,0 -5.15625,-2.300781 -5.15625,-5.15625 0,-2.855469 2.300781,-5.15625 5.15625,-5.15625 z"
|
67
|
-
inkscape:connector-curvature="0" />
|
68
|
-
</g>
|
69
|
-
</g>
|
70
|
-
</svg>
|
Binary file
|