tomwer 1.4.6__py3-none-any.whl → 1.4.8__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.
Files changed (60) hide show
  1. orangecontrib/tomwer/tests/TestAcquisition.py +1 -3
  2. orangecontrib/tomwer/widgets/reconstruction/CastNabuVolumeOW.py +25 -0
  3. tomwer/app/__init__.py +1 -2
  4. tomwer/app/axis.py +1 -2
  5. tomwer/app/canvas.py +1 -2
  6. tomwer/app/diffframe.py +1 -2
  7. tomwer/app/imagekeyeditor.py +1 -2
  8. tomwer/app/imagekeyupgrader.py +1 -2
  9. tomwer/app/multicor.py +1 -2
  10. tomwer/app/multipag.py +1 -2
  11. tomwer/app/nabuapp.py +1 -2
  12. tomwer/app/nxtomoeditor.py +1 -2
  13. tomwer/app/patchrawdarkflat.py +1 -2
  14. tomwer/app/radiostack.py +1 -2
  15. tomwer/app/reducedarkflat.py +1 -2
  16. tomwer/app/samplemoved.py +1 -2
  17. tomwer/app/scanviewer.py +1 -2
  18. tomwer/app/sinogramviewer.py +1 -2
  19. tomwer/core/__init__.py +1 -2
  20. tomwer/core/cluster/__init__.py +1 -2
  21. tomwer/core/futureobject.py +1 -2
  22. tomwer/core/log/__init__.py +1 -2
  23. tomwer/core/process/cluster/supervisor.py +1 -2
  24. tomwer/core/process/drac/processeddataset.py +14 -0
  25. tomwer/core/process/reconstruction/axis/axis.py +1 -2
  26. tomwer/core/process/reconstruction/nabu/castvolume.py +17 -1
  27. tomwer/core/process/reconstruction/nabu/nabucommon.py +1 -2
  28. tomwer/core/process/reconstruction/output.py +2 -0
  29. tomwer/core/process/reconstruction/saaxis/saaxis.py +1 -2
  30. tomwer/core/process/reconstruction/sadeltabeta/sadeltabeta.py +1 -2
  31. tomwer/core/utils/__init__.py +1 -2
  32. tomwer/gui/cluster/__init__.py +1 -2
  33. tomwer/gui/conditions/__init__.py +1 -2
  34. tomwer/gui/configuration/__init__.py +1 -2
  35. tomwer/gui/control/__init__.py +1 -2
  36. tomwer/gui/dataportal/__init__.py +1 -2
  37. tomwer/gui/debugtools/__init__.py +1 -2
  38. tomwer/gui/dialog/QDataDialog.py +1 -2
  39. tomwer/gui/dialog/QVolumeDialog.py +1 -2
  40. tomwer/gui/edit/__init__.py +1 -2
  41. tomwer/gui/imagefromfile.py +1 -2
  42. tomwer/gui/metadataloader.py +1 -2
  43. tomwer/gui/qconfigfile.py +1 -2
  44. tomwer/gui/qlefilesystem.py +1 -2
  45. tomwer/gui/reconstruction/__init__.py +1 -2
  46. tomwer/gui/settings.py +1 -2
  47. tomwer/gui/stackplot.py +1 -2
  48. tomwer/gui/stitching/__init__.py +1 -2
  49. tomwer/gui/utils/slider.py +1 -2
  50. tomwer/gui/visualization/__init__.py +1 -2
  51. tomwer/io/__init__.py +1 -2
  52. tomwer/version.py +1 -1
  53. {tomwer-1.4.6.dist-info → tomwer-1.4.8.dist-info}/METADATA +3 -2
  54. {tomwer-1.4.6.dist-info → tomwer-1.4.8.dist-info}/RECORD +58 -60
  55. orangecontrib/tomwer/tutorials/test_cor.ows +0 -19
  56. tomwer/tasks/reconstruction/cleardarkflat.py +0 -38
  57. {tomwer-1.4.6.dist-info → tomwer-1.4.8.dist-info}/LICENSE +0 -0
  58. {tomwer-1.4.6.dist-info → tomwer-1.4.8.dist-info}/WHEEL +0 -0
  59. {tomwer-1.4.6.dist-info → tomwer-1.4.8.dist-info}/entry_points.txt +0 -0
  60. {tomwer-1.4.6.dist-info → tomwer-1.4.8.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,4 @@
1
- """Full tomwer test suite.
2
-
3
- """
1
+ """Full tomwer test suite."""
4
2
 
5
3
  from __future__ import annotations
6
4
 
@@ -13,6 +13,9 @@ from tomwer.core.cluster.cluster import SlurmClusterConfiguration
13
13
  from tomwer.core.futureobject import FutureTomwerObject
14
14
  from tomwer.core.scan.scanbase import TomwerScanBase
15
15
  from tomwer.core.volume.volumebase import TomwerVolumeBase
16
+ from tomwer.core.process.drac.processeddataset import (
17
+ DracReconstructedVolumeDataset,
18
+ )
16
19
  from tomwer.gui.reconstruction.nabu.castvolume import CastVolumeWidget
17
20
  from tomwer.gui.utils.qt_utils import block_signals
18
21
 
@@ -101,6 +104,11 @@ class CastNabuVolumeOW(WidgetLongProcessing, SuperviseOW):
101
104
  type=FutureTomwerObject,
102
105
  doc="future object (process remotely)",
103
106
  )
107
+ data_portal_processed_datasets = Output(
108
+ name="data_portal_processed_datasets",
109
+ type=tuple,
110
+ doc="data portal processed data to be saved",
111
+ )
104
112
 
105
113
  def __init__(self, parent=None):
106
114
  """ """
@@ -193,11 +201,28 @@ class CastNabuVolumeOW(WidgetLongProcessing, SuperviseOW):
193
201
  if future_tomo_obj is not None:
194
202
  self.Outputs.future_tomo_obj.send(future_tomo_obj)
195
203
  if obj is not None:
204
+ scan = None
196
205
  if isinstance(obj, TomwerScanBase):
206
+ # case the input object was a scan (expected)
197
207
  self.Outputs.data.send(obj)
208
+ scan = obj
198
209
  elif isinstance(obj, TomwerVolumeBase):
210
+ # case the input object was a volume
199
211
  self.Outputs.volume.send(obj)
200
212
  # for now we store a cast_volume to the object but this is not very well design.
201
213
  # I guess this will be removed once we move to ewoks or we need to redesign the stack approach
202
214
  if obj.cast_volume is not None:
215
+ assert isinstance(obj.cast_volume, TomwerVolumeBase)
203
216
  self.Outputs.cast_volume.send(obj.cast_volume)
217
+
218
+ if scan is not None:
219
+ # case the input object was a scan and we have succeeded to cast the volume
220
+ # then we can publish to the data portal
221
+ icatReconstructedDataset = DracReconstructedVolumeDataset(
222
+ tomo_obj=obj.cast_volume,
223
+ source_scan=scan,
224
+ )
225
+
226
+ self.Outputs.data_portal_processed_datasets.send(
227
+ (icatReconstructedDataset,)
228
+ )
tomwer/app/__init__.py CHANGED
@@ -1,2 +1 @@
1
- """This package contains all the applications that can be launched from 'tomwer'
2
- """
1
+ """This package contains all the applications that can be launched from 'tomwer'"""
tomwer/app/axis.py CHANGED
@@ -1,7 +1,6 @@
1
1
  #!/usr/bin/env python
2
2
  # -*- coding: utf-8 -*-
3
- """Application to compute the center of rotation of a scan
4
- """
3
+ """Application to compute the center of rotation of a scan"""
5
4
 
6
5
  import argparse
7
6
  import functools
tomwer/app/canvas.py CHANGED
@@ -1,5 +1,4 @@
1
- """Application to define a tomography workflow (also as know as 'ewoks-canvas' or 'orange canvas')
2
- """
1
+ """Application to define a tomography workflow (also as know as 'ewoks-canvas' or 'orange canvas')"""
3
2
 
4
3
  import logging
5
4
  import platform
tomwer/app/diffframe.py CHANGED
@@ -1,7 +1,6 @@
1
1
  #!/usr/bin/env python
2
2
  # -*- coding: utf-8 -*-
3
- """Application to display the difference between two frames.
4
- """
3
+ """Application to display the difference between two frames."""
5
4
 
6
5
  import argparse
7
6
  import logging
@@ -1,7 +1,6 @@
1
1
  #!/usr/bin/env python
2
2
  # -*- coding: utf-8 -*-
3
- """Application to edit (key by key) the 'imagekey' value of a NXtomo ('imagekey' defines if a frame is a 'dark', 'flat' or a 'projection')
4
- """
3
+ """Application to edit (key by key) the 'imagekey' value of a NXtomo ('imagekey' defines if a frame is a 'dark', 'flat' or a 'projection')"""
5
4
  import argparse
6
5
  import logging
7
6
  import signal
@@ -1,7 +1,6 @@
1
1
  #!/usr/bin/env python
2
2
  # -*- coding: utf-8 -*-
3
- """Application to edit (group by group) the 'imagekey' value of a NXtomo ('imagekey' defines if a frame is a 'dark', 'flat' or a 'projection')
4
- """
3
+ """Application to edit (group by group) the 'imagekey' value of a NXtomo ('imagekey' defines if a frame is a 'dark', 'flat' or a 'projection')"""
5
4
 
6
5
  import argparse
7
6
  import logging
tomwer/app/multicor.py CHANGED
@@ -1,7 +1,6 @@
1
1
  #!/usr/bin/env python
2
2
  # -*- coding: utf-8 -*-
3
- """Application to reconstruct a slice for a set of center of rotation value. Interface to nabu multicor
4
- """
3
+ """Application to reconstruct a slice for a set of center of rotation value. Interface to nabu multicor"""
5
4
 
6
5
  from __future__ import annotations
7
6
 
tomwer/app/multipag.py CHANGED
@@ -1,7 +1,6 @@
1
1
  #!/usr/bin/env python
2
2
  # -*- coding: utf-8 -*-
3
- """Application to reconstruct a slice with Paganin for a set of delta/beta values.
4
- """
3
+ """Application to reconstruct a slice with Paganin for a set of delta/beta values."""
5
4
 
6
5
  from __future__ import annotations
7
6
 
tomwer/app/nabuapp.py CHANGED
@@ -1,7 +1,6 @@
1
1
  #!/usr/bin/env python
2
2
  # -*- coding: utf-8 -*-
3
- """Application to reconstruct a slice with nabu
4
- """
3
+ """Application to reconstruct a slice with nabu"""
5
4
  import argparse
6
5
  import logging
7
6
  import signal
@@ -1,7 +1,6 @@
1
1
  #!/usr/bin/env python
2
2
  # -*- coding: utf-8 -*-
3
- """Application to edit several entries of a NXtomo
4
- """
3
+ """Application to edit several entries of a NXtomo"""
5
4
 
6
5
  import argparse
7
6
  import logging
@@ -1,7 +1,6 @@
1
1
  #!/usr/bin/env python
2
2
  # -*- coding: utf-8 -*-
3
- """Application to append dark of flat frames to an existing NXtomo
4
- """
3
+ """Application to append dark of flat frames to an existing NXtomo"""
5
4
 
6
5
  import argparse
7
6
  import logging
tomwer/app/radiostack.py CHANGED
@@ -1,7 +1,6 @@
1
1
  #!/usr/bin/env python
2
2
  # -*- coding: utf-8 -*-
3
- """Application to display scan radios as a stack
4
- """
3
+ """Application to display scan radios as a stack"""
5
4
  import argparse
6
5
  import logging
7
6
  import os
@@ -1,7 +1,6 @@
1
1
  #!/usr/bin/env python
2
2
  # -*- coding: utf-8 -*-
3
- """Application to compute reduced darks and flats for a given scan
4
- """
3
+ """Application to compute reduced darks and flats for a given scan"""
5
4
 
6
5
  import argparse
7
6
  import logging
tomwer/app/samplemoved.py CHANGED
@@ -1,7 +1,6 @@
1
1
  #!/usr/bin/env python
2
2
  # -*- coding: utf-8 -*-
3
- """Application to display a couple of projections at 180 degree and estimate (by eye) if a sample has moved
4
- """
3
+ """Application to display a couple of projections at 180 degree and estimate (by eye) if a sample has moved"""
5
4
 
6
5
  import argparse
7
6
  import logging
tomwer/app/scanviewer.py CHANGED
@@ -1,7 +1,6 @@
1
1
  #!/usr/bin/env python
2
2
  # -*- coding: utf-8 -*-
3
- """Application to browse a given scan
4
- """
3
+ """Application to browse a given scan"""
5
4
 
6
5
  import argparse
7
6
  import logging
@@ -1,7 +1,6 @@
1
1
  #!/usr/bin/env python
2
2
  # -*- coding: utf-8 -*-
3
- """Application to display a sinogram from a scan
4
- """
3
+ """Application to display a sinogram from a scan"""
5
4
 
6
5
  import argparse
7
6
  import logging
tomwer/core/__init__.py CHANGED
@@ -1,2 +1 @@
1
- """This package contains all the core functions / classes of tomwer
2
- """
1
+ """This package contains all the core functions / classes of tomwer"""
@@ -1,4 +1,3 @@
1
- """cluster related functions and classes (slurm...)
2
- """
1
+ """cluster related functions and classes (slurm...)"""
3
2
 
4
3
  from .cluster import SlurmClusterConfiguration # noqa F401
@@ -1,5 +1,4 @@
1
- """contains 'FutureTomwerObject'. Class used when computation is done asynchronously (when submitted to slurm for example)
2
- """
1
+ """contains 'FutureTomwerObject'. Class used when computation is done asynchronously (when submitted to slurm for example)"""
3
2
 
4
3
  from __future__ import annotations
5
4
 
@@ -1,2 +1 @@
1
- """contains some log utils (used to notify processing advancement)
2
- """
1
+ """contains some log utils (used to notify processing advancement)"""
@@ -1,6 +1,5 @@
1
1
  # coding: utf-8
2
- """module containing FutureSupervisorTask.
3
- """
2
+ """module containing FutureSupervisorTask."""
4
3
 
5
4
  from typing import Iterable
6
5
 
@@ -10,6 +10,9 @@ from tomwer.core.process.reconstruction.nabu.plane import NabuPlane
10
10
  from tomwer.core.process.reconstruction.output import (
11
11
  PROCESS_FOLDER_RECONSTRUCTED_VOLUMES,
12
12
  )
13
+ from tomwer.core.process.reconstruction.output import (
14
+ PROCESS_FOLDER_CAST_VOLUME,
15
+ )
13
16
 
14
17
 
15
18
  __all__ = ["DracReconstructedVolumeDataset"]
@@ -145,3 +148,14 @@ class DracReconstructedVolumeDataset(DracDatasetBase):
145
148
  axis_folder,
146
149
  f"{basename}_capture_{axis.value}_{str(slice_index).zfill(6)}",
147
150
  )
151
+
152
+
153
+ class DracCastReconstructedVolume(DracReconstructedVolumeDataset):
154
+ """
155
+ Class to associate casted - reconstructed volume(s) to an drac (processed) dataset
156
+ """
157
+
158
+ @property
159
+ def dataset_name(self) -> str:
160
+ """name to give to the drac (processed) dataset."""
161
+ return PROCESS_FOLDER_CAST_VOLUME
@@ -1,5 +1,4 @@
1
- """contain the AxisTask class
2
- """
1
+ """contain the AxisTask class"""
3
2
 
4
3
  from __future__ import annotations
5
4
 
@@ -28,11 +28,17 @@ from tomwer.core.utils.slurm import get_slurm_script_name
28
28
  from tomwer.core.utils.volumeutils import volume_identifier_to_volume
29
29
  from tomwer.core.volume.volumebase import TomwerVolumeBase
30
30
  from tomwer.core.volume.volumefactory import VolumeFactory
31
+ from tomwer.core.process.drac.processeddataset import (
32
+ DracReconstructedVolumeDataset,
33
+ )
31
34
 
32
35
  _logger = logging.getLogger(__name__)
33
36
 
37
+ CAST_VOLUME_WORKING_SUB_DIRECTORY = "cast_volume"
34
38
 
35
- DEFAULT_OUTPUT_DIR = "{volume_data_parent_folder}/cast_volume"
39
+ DEFAULT_OUTPUT_DIR = (
40
+ "{volume_data_parent_folder}" f"/{CAST_VOLUME_WORKING_SUB_DIRECTORY}"
41
+ )
36
42
 
37
43
 
38
44
  class CastVolumeTask(
@@ -46,6 +52,7 @@ class CastVolumeTask(
46
52
  output_names=(
47
53
  "volume",
48
54
  "future_tomo_obj",
55
+ "data_portal_processed_datasets",
49
56
  ),
50
57
  ):
51
58
  def __init__(
@@ -176,6 +183,7 @@ class CastVolumeTask(
176
183
  scan.cast_volume = output_volume.get_identifier()
177
184
  else:
178
185
  input_volume.cast_volume = output_volume.get_identifier()
186
+ self.outputs.data_portal_processed_datasets = tuple()
179
187
  # run volume cast remotely
180
188
  else:
181
189
 
@@ -230,6 +238,14 @@ class CastVolumeTask(
230
238
  )
231
239
  self.outputs.volume = output_volume
232
240
 
241
+ if scan is not None:
242
+ drac_reconstructed_dataset = DracReconstructedVolumeDataset(
243
+ tomo_obj=output_volume,
244
+ source_scan=scan,
245
+ )
246
+ self.outputs.data_portal_processed_datasets = (
247
+ drac_reconstructed_dataset,
248
+ )
233
249
  # for now at the task level we consider this is succeed if it has been submitted
234
250
  ProcessManager().notify_dataset_state(
235
251
  dataset=scan or input_volume,
@@ -1,5 +1,4 @@
1
- """contain utils for score process
2
- """
1
+ """contain utils for score process"""
3
2
 
4
3
  from __future__ import annotations
5
4
 
@@ -16,6 +16,8 @@ PROCESS_FOLDER_RECONSTRUCTED_VOLUMES = "reconstructed_volumes"
16
16
 
17
17
  PROCESS_FOLDER_RECONSTRUCTED_SLICES = "reconstructed_slices"
18
18
 
19
+ PROCESS_FOLDER_CAST_VOLUME = "cast_volume"
20
+
19
21
 
20
22
  class NabuOutputFileFormat(_Enum):
21
23
  TIFF = "tiff"
@@ -1,5 +1,4 @@
1
- """contain the SAAxisProcess. Half automatic center of rotation calculation
2
- """
1
+ """contain the SAAxisProcess. Half automatic center of rotation calculation"""
3
2
 
4
3
  from __future__ import annotations
5
4
 
@@ -1,5 +1,4 @@
1
- """contain the SADeltaBetaProcess. Half automatic best delta / beta finder
2
- """
1
+ """contain the SADeltaBetaProcess. Half automatic best delta / beta finder"""
3
2
 
4
3
  from __future__ import annotations
5
4
 
@@ -1,2 +1 @@
1
- """Several core utils
2
- """
1
+ """Several core utils"""
@@ -1,2 +1 @@
1
- """Widgets for remote processing
2
- """
1
+ """Widgets for remote processing"""
@@ -1,2 +1 @@
1
- """Widgets for conditions (filters to let a scan continue processing or not)
2
- """
1
+ """Widgets for conditions (filters to let a scan continue processing or not)"""
@@ -1,2 +1 @@
1
- """Widgets to define the configuration level we want to display (display only basic configuration/settings, advance...)
2
- """
1
+ """Widgets to define the configuration level we want to display (display only basic configuration/settings, advance...)"""
@@ -1,2 +1 @@
1
- """Widgets related to 'control' tasks (select a scan, convert a scan with nxtomomill...)
2
- """
1
+ """Widgets related to 'control' tasks (select a scan, convert a scan with nxtomomill...)"""
@@ -1,2 +1 @@
1
- """Widgets related to icat / drac
2
- """
1
+ """Widgets related to icat / drac"""
@@ -1,2 +1 @@
1
- """Widgets useful to debut a tomography workflow (generate random scan...)
2
- """
1
+ """Widgets useful to debut a tomography workflow (generate random scan...)"""
@@ -1,5 +1,4 @@
1
- """contains dialogs to select a Scan (aka Data)
2
- """
1
+ """contains dialogs to select a Scan (aka Data)"""
3
2
 
4
3
  from __future__ import annotations
5
4
 
@@ -1,5 +1,4 @@
1
- """contains dialogs to select a Volume (reconstruction of a scan)
2
- """
1
+ """contains dialogs to select a Volume (reconstruction of a scan)"""
3
2
 
4
3
  from __future__ import annotations
5
4
 
@@ -1,2 +1 @@
1
- """Widgets related to 'control' tasks (select a scan, convert a scan with nxtomomill...)
2
- """
1
+ """Widgets related to 'control' tasks (select a scan, convert a scan with nxtomomill...)"""
@@ -1,5 +1,4 @@
1
- """Utils to load images from file
2
- """
1
+ """Utils to load images from file"""
3
2
 
4
3
  from __future__ import annotations
5
4
 
@@ -1,5 +1,4 @@
1
- """Utils to load metadata (from a volume at the moment)
2
- """
1
+ """Utils to load metadata (from a volume at the moment)"""
3
2
 
4
3
  import logging
5
4
  from silx.gui import qt
tomwer/gui/qconfigfile.py CHANGED
@@ -1,5 +1,4 @@
1
- """contains 'QConfigFileDialog': dialog to get / set a .cfg file
2
- """
1
+ """contains 'QConfigFileDialog': dialog to get / set a .cfg file"""
3
2
 
4
3
  import os
5
4
  from silx.gui import qt
@@ -1,5 +1,4 @@
1
- """contains QLFileSystem class. Specific implementation of the QLineEdit to select a file path.
2
- """
1
+ """contains QLFileSystem class. Specific implementation of the QLineEdit to select a file path."""
3
2
 
4
3
  from silx.gui import qt
5
4
 
@@ -1,2 +1 @@
1
- """Widgets related to tomography reconstruction (cor search, nabu volume reconstruction...)
2
- """
1
+ """Widgets related to tomography reconstruction (cor search, nabu volume reconstruction...)"""
tomwer/gui/settings.py CHANGED
@@ -1,5 +1,4 @@
1
- """gui settings
2
- """
1
+ """gui settings"""
3
2
 
4
3
  from silx.gui import qt
5
4
 
tomwer/gui/stackplot.py CHANGED
@@ -1,5 +1,4 @@
1
- """Contains the QImageFileStackPlot. Widget to display a set of files with metadata (either scan or volume metadata)
2
- """
1
+ """Contains the QImageFileStackPlot. Widget to display a set of files with metadata (either scan or volume metadata)"""
3
2
 
4
3
  from __future__ import annotations
5
4
 
@@ -1,2 +1 @@
1
- """Widgets for stitching scans or volumes
2
- """
1
+ """Widgets for stitching scans or volumes"""
@@ -1,7 +1,6 @@
1
1
  # coding: utf-8
2
2
 
3
- """some utils relative to PyHST
4
- """
3
+ """some utils relative to PyHST"""
5
4
 
6
5
  from __future__ import annotations
7
6
 
@@ -1,2 +1 @@
1
- """Widgets for displaying data (sinogram, browsing scans, display reconstructed volumes...)
2
- """
1
+ """Widgets for displaying data (sinogram, browsing scans, display reconstructed volumes...)"""
tomwer/io/__init__.py CHANGED
@@ -1,2 +1 @@
1
- """This package provides functionalities for inputs and outputs (read, write)
2
- """
1
+ """This package provides functionalities for inputs and outputs (read, write)"""
tomwer/version.py CHANGED
@@ -77,7 +77,7 @@ RELEASE_LEVEL_VALUE = {
77
77
 
78
78
  MAJOR = 1
79
79
  MINOR = 4
80
- MICRO = 6
80
+ MICRO = 8
81
81
  RELEV = "final" # <16
82
82
  SERIAL = 0 # <16
83
83
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: tomwer
3
- Version: 1.4.6
3
+ Version: 1.4.8
4
4
  Summary: "tomography workflow tools"
5
5
  Home-page: https://gitlab.esrf.fr/tomotools/tomwer
6
6
  Author: Henri Payno, Pierre Paleo, Pierre-Olivier Autran, Jérôme Lesaint, Alessandro Mirone
@@ -24,12 +24,13 @@ License-File: LICENSE
24
24
  Requires-Dist: numpy
25
25
  Requires-Dist: setuptools
26
26
  Requires-Dist: psutil
27
- Requires-Dist: silx[full]>=2.0
27
+ Requires-Dist: silx[full]<2.1.1,>=2.0
28
28
  Requires-Dist: tomoscan>=2.1.0a18
29
29
  Requires-Dist: nxtomo>=1.3.0dev4
30
30
  Requires-Dist: nxtomomill>=1.1.0a0
31
31
  Requires-Dist: processview>=1.5.0
32
32
  Requires-Dist: ewoks>=0.1.1
33
+ Requires-Dist: ewokscore<1.1.0
33
34
  Requires-Dist: sluurp>=0.4.1
34
35
  Requires-Dist: packaging
35
36
  Requires-Dist: pyunitsystem>=2.0.0a
@@ -3,7 +3,7 @@ orangecontrib/tomwer/state_summary.py,sha256=5_dPzweL3r0ye4ZfJo6IV2ThJI8fQhWoO2y
3
3
  orangecontrib/tomwer/orange/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
4
  orangecontrib/tomwer/orange/managedprocess.py,sha256=0OMlOYnNq5hC-t6CWtDaERQ9k0bNMGaLzVT9fDyM1LE,3512
5
5
  orangecontrib/tomwer/orange/settings.py,sha256=osaHvnyE1NJwAWHQoKHtageey1giRQCdBmpTY_zeWoA,720
6
- orangecontrib/tomwer/tests/TestAcquisition.py,sha256=57fI2tTnI7viysekP8aFQx2gggD9o0Quu6l0eW7zdyE,7782
6
+ orangecontrib/tomwer/tests/TestAcquisition.py,sha256=UAnXV4qpZY9yEFG3ZFlrvo7HJC6L-ao387zXX844WF8,7780
7
7
  orangecontrib/tomwer/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
8
  orangecontrib/tomwer/tutorials/EBS_tomo_listener.ows,sha256=GLHvcQnR79X2sTDqIq9h4ayb3Tya7S-givzPta63ciQ,4747
9
9
  orangecontrib/tomwer/tutorials/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -18,7 +18,6 @@ orangecontrib/tomwer/tutorials/simple_slice_reconstruction.ows,sha256=O9Bnunjh0Q
18
18
  orangecontrib/tomwer/tutorials/simple_slice_reconstruction_on_slurm.ows,sha256=t-fwTMCvqQV17AIZWM0lSCmjC6loLEHNZSFmAADF9xY,6584
19
19
  orangecontrib/tomwer/tutorials/simple_volume_local_reconstruction.ows,sha256=BBxkMX98PjDZsgxiVz4i-xPFw4WMdzif2YPnRQfONP4,5945
20
20
  orangecontrib/tomwer/tutorials/simple_volume_to_slurm_reconstruction.ows,sha256=qjwsBFk4Bq_Enr3eolCb5oRgH-jMiY1ljqi79JXgjcM,9159
21
- orangecontrib/tomwer/tutorials/test_cor.ows,sha256=tlpNXVRRhGQR5yGMvWvVR5DqVyl1G3f8hSQ8u17hmLU,2464
22
21
  orangecontrib/tomwer/tutorials/using_saaxis_to_find_cor.ows,sha256=TUZNkXEsQyj7Qra1GEb4IhGFDWv3uJzqXbp3P04jwbs,5192
23
22
  orangecontrib/tomwer/tutorials/volume_casting_on_slurm.ows,sha256=yKa6pvd4UB6XDDlj_o7T8Md6bI8aQJXMCUnxyecdXbc,7568
24
23
  orangecontrib/tomwer/tutorials/id16b/ID16b_full_volume.ows,sha256=eSxYxrZ-0WKsmDqXivsHxND7SR2dSwdgG6Wcjbr06Ew,1727
@@ -149,7 +148,7 @@ orangecontrib/tomwer/widgets/other/icons/hub.png,sha256=wnKSaxw2WnBkSQjI86aLZfdm
149
148
  orangecontrib/tomwer/widgets/other/icons/hub.svg,sha256=9EYoBKY-P-cO17nM48OPA9VDZSCbyGtrMRc80BGHflk,3735
150
149
  orangecontrib/tomwer/widgets/other/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
151
150
  orangecontrib/tomwer/widgets/reconstruction/AxisOW.py,sha256=Qz6r34NdNgBvn-UwbIhPQDDCgtlXa_rSLnCEIuI_mrQ,20067
152
- orangecontrib/tomwer/widgets/reconstruction/CastNabuVolumeOW.py,sha256=E9hTJH_WfMsbOpKsGworVkqc16kWIRL1ajZbpnT_IAI,7614
151
+ orangecontrib/tomwer/widgets/reconstruction/CastNabuVolumeOW.py,sha256=sqpWF769TJ07ApEMqdz0BUWiXoKnZ8k2Fg1yfBaqdIc,8668
153
152
  orangecontrib/tomwer/widgets/reconstruction/DarkRefAndCopyOW.py,sha256=flRgeOXimjzKEtL6h-0hwaa04G-BqMydv0Ju5r0Reao,9696
154
153
  orangecontrib/tomwer/widgets/reconstruction/NabuHelicalPrepareWeightsDoubleOW.py,sha256=NjMC0BEmPhDZ795Q-yyL81-hluAyGE8MRiq8xMdqAqY,6233
155
154
  orangecontrib/tomwer/widgets/reconstruction/NabuOW.py,sha256=UvCNwpAtQ1AdCl5kUw13QsKxesIDV8SIjIW9cWCXIMc,9946
@@ -220,27 +219,27 @@ orangecontrib/tomwer/widgets/visualization/tests/__init__.py,sha256=47DEQpj8HBSa
220
219
  tomwer/__init__.py,sha256=cMIyH-uRxpa9WVnAuWjiBD7k9TK57WO21RzP_S-Mb8I,460
221
220
  tomwer/__main__.py,sha256=7tCADiS4u7k1PCxFhlRAcYSIOpxQTGUTx8sCEQ-hi1E,8707
222
221
  tomwer/utils.py,sha256=7h7dEgKAEUmQ43jkULvC1B9Adl55nkCty-SEKUKCl4U,7008
223
- tomwer/version.py,sha256=69GoZku3KcVoMi8E2-7j4OrMNv9ytmND71aPCf4NsY8,4386
224
- tomwer/app/__init__.py,sha256=RYMB2YhbQaoMXC8W-oOyfZ_Y1vmHD7L13YkKeAMuShM,85
225
- tomwer/app/axis.py,sha256=OhDgMj_gS-45PnjKBTyOCOkmZ1Iy-Tb6Dj66mzQg0sU,5827
226
- tomwer/app/canvas.py,sha256=sM368nniUwbQXLA-oNCg1iNwMMol_ZGTKbiw8WsC4yw,1539
222
+ tomwer/version.py,sha256=9eVN2X5pHYpA_0DB79D32-UlghmotJxh_g2O_lUlL70,4386
223
+ tomwer/app/__init__.py,sha256=h1FKED7Tw5f99yikygt7ruXsdrxQhcJxO7kagLGxhJg,84
224
+ tomwer/app/axis.py,sha256=lB-IZx1o6KTWLIelITvYCIu2flFTB9NhuIfD2MhUZZA,5826
225
+ tomwer/app/canvas.py,sha256=y8rYOiwmv6ug7JcjgkOzEiGQnNXjKWNNmKofT0n8TFg,1538
227
226
  tomwer/app/darkref.py,sha256=SnSKtLa6K1jmHfyqQfsuhJ7EC4g04ejTrhJa9pzC4S8,276
228
227
  tomwer/app/darkrefpatch.py,sha256=Zzl1zdBHEDgAPd5J7agaaK1GN3uQjxePRRCaLpXL6A8,285
229
- tomwer/app/diffframe.py,sha256=7z4pY5MJqga52HuXGZy8lBS_90RmwfaQfkiVjANn5VY,3231
230
- tomwer/app/imagekeyeditor.py,sha256=jGv1JPoKykVkGQB1V1momAzYl-w8ToqdEtZHosh2TXk,2963
231
- tomwer/app/imagekeyupgrader.py,sha256=l2tOhbvNpwJTekpMCDYiQxqlMuAl7D0C5BuahPWwojg,3364
228
+ tomwer/app/diffframe.py,sha256=qe5D_UKKvzYLSI6RuVCIGRGG6gKG1vAWhs1wi0QMAME,3230
229
+ tomwer/app/imagekeyeditor.py,sha256=FWeu9ITw3Ic9YxjAAL29dfa0FSMFH16QbpyUlqlOZuY,2962
230
+ tomwer/app/imagekeyupgrader.py,sha256=qLbfWPz68b2DxMYNd5MlIyZdQ12YQ7F-KUA92RcI01A,3363
232
231
  tomwer/app/intensitynormalization.py,sha256=5uT8xQWjjq7uV8-0jru_2Qf9SIN5ooVCPH8Ok8inMYE,5998
233
- tomwer/app/multicor.py,sha256=Y8cOoMRUwQvfG538HNfH8Si_Haf40PU89QNICqLLTvs,8901
234
- tomwer/app/multipag.py,sha256=m-sDDzzVA88w5OQ89lH6GsljvDJh2UgQSfqPdBwIV-M,12017
235
- tomwer/app/nabuapp.py,sha256=QZauaxxn_sxBvD5GHxoO42hICFtpzDQxePd4ALpgz4o,7644
236
- tomwer/app/nxtomoeditor.py,sha256=rldxrVCIUludQGEbTx0YzNf4SvG3PZ7q5PnNuVdiuko,3013
237
- tomwer/app/patchrawdarkflat.py,sha256=ORegJ--eo9S16NmuT1c4E64-2rQuOEHpveIfmoF9FAc,3780
238
- tomwer/app/radiostack.py,sha256=7ApJhyHwPCKdBeb-YDntjdTFXd1F_gQLupm6L-SDuE4,2641
239
- tomwer/app/reducedarkflat.py,sha256=4n1bL65INw6TTq8ZCG8H5HwrtiioNjlD7MaZNWF7C9g,6573
232
+ tomwer/app/multicor.py,sha256=NgSYIh1CTM1ssD5fXfH4j9MM3HU_NUEx_4EIWehijMs,8900
233
+ tomwer/app/multipag.py,sha256=LHk4-97aYqFQ9UgQb8mYW1_nkUQBbgUxee4RinloCjk,12016
234
+ tomwer/app/nabuapp.py,sha256=f8mao2GprCN-CCTFHUlrCLoxFNZmMpzegrlMNnyE_XI,7643
235
+ tomwer/app/nxtomoeditor.py,sha256=1Wj59ZF3QvDBmUkUosxZlxvOM-mCvs74l1YJe3tFtwQ,3012
236
+ tomwer/app/patchrawdarkflat.py,sha256=0s4Uk7rlF6VYcwKAysxj5ncP7jTgDL9XIiMPqZUktvg,3779
237
+ tomwer/app/radiostack.py,sha256=S6VB7BSmpfFdnGEyX_7wvLFiOtbtlEwgP7PEUAJLN4w,2640
238
+ tomwer/app/reducedarkflat.py,sha256=XAiZbhqpZpYTWqYLJ6E66kwVQHmOfljlW3AlOQBJxJA,6572
240
239
  tomwer/app/rsync.py,sha256=eT8HoSOp56SqbjKKm3DQ0tl5wfGaDhE3O5XzZBlzkx0,4081
241
- tomwer/app/samplemoved.py,sha256=CWenbr0oF7X783cco6F4QqFbnz2SnbZeraNLNy1bKAk,2639
242
- tomwer/app/scanviewer.py,sha256=PaP6Uvv7L77ai0J8qELciqG9Elk_9QkpCBbQ5UfjCBk,2750
243
- tomwer/app/sinogramviewer.py,sha256=AsLgPRoJTWS7qKmdUlCBHurIVPRB6NC2AMNhHmPxOUY,3730
240
+ tomwer/app/samplemoved.py,sha256=EXpP9sW18Nfhi0MHwNwSuea6ZmGK61YAvzJ9qXSO4cs,2638
241
+ tomwer/app/scanviewer.py,sha256=MSMxnNATEl2Xb_cdRsurY_6UyLg5vI7w6LpOT-PnzRs,2749
242
+ tomwer/app/sinogramviewer.py,sha256=dFlsENEghcGcMiurjeDXsqCe2_SasDSNK9DOoIImg2U,3729
244
243
  tomwer/app/slicestack.py,sha256=7ZNDEyp0dUzcMH0LtQPBF2Fu0gCUDVDrfZBC_wx3p_s,2437
245
244
  tomwer/app/stopdatalistener.py,sha256=WADEHM5LHHjWP2HM-ru-RinXWzvV3PQv72E5Y1XeioY,1037
246
245
  tomwer/app/ystitching.py,sha256=QvXUHBnmr3R--lTvd_RkjpXMAedbnpiC01bSD99_BPE,562
@@ -254,22 +253,22 @@ tomwer/app/canvas_launcher/utils.py,sha256=4zWaao2EW5OcKomAw38YUIUgOLfkUPGdPCqLs
254
253
  tomwer/app/canvas_launcher/widgetsscheme.py,sha256=9Or1KMmSxIs_dJmJGV0Xhjg9HH4m8aPGbtiEuK2i6q0,2744
255
254
  tomwer/app/stitching/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
256
255
  tomwer/app/stitching/common.py,sha256=TCXNnAz2MSJrrogB5iWptktxq-g5ED2FUt_jMnDXpnQ,14723
257
- tomwer/core/__init__.py,sha256=ry3BZxaZzsbjymW1wqPcKROzJO9ePkiiqWp1JRVOrS8,72
258
- tomwer/core/futureobject.py,sha256=YQE6zROyDFu2PYBI7hxZKpn-K_FqZQ9xGSIyqMErK5U,5114
256
+ tomwer/core/__init__.py,sha256=-EtD8J-a7WVnCgYS7WHkisYn61iM2PpHWcXwE5BetJ8,71
257
+ tomwer/core/futureobject.py,sha256=8Sd9gOrdhYc0PvzPeZPBNOmaHuwB5epG6RJyABRsCmQ,5113
259
258
  tomwer/core/resourcemanager.py,sha256=VLNnVodMa-HOMZhN2qpUR_L6phJ8IHPUEPYMxuW6VHg,1067
260
259
  tomwer/core/settings.py,sha256=57qD44LU_3eB50rD7RHdg5nBweiHerzWbXHcBUna6gY,4089
261
260
  tomwer/core/signal.py,sha256=I5TUcyeBZzrEh1SFGs-ylJSL1aBs41ZFb3IJo3O_55c,6115
262
261
  tomwer/core/tomwer_object.py,sha256=rIaD1QlN3Q0cR5h9Sap1Whn4lawu5z9zZ1KspdhYbg0,2023
263
- tomwer/core/cluster/__init__.py,sha256=-TAvbe_eX6K_G91CrWmO0St2cGPTuxIdE2ziCpMk1UA,117
262
+ tomwer/core/cluster/__init__.py,sha256=w58VJZaGwC-8hwHLADeJrW9-rs-PrVz6few3AqpScqQ,116
264
263
  tomwer/core/cluster/cluster.py,sha256=1dSIf5kmzyjOLZaVGkcnE0i-D6bRKazDV0TXPHJvSyQ,4424
265
- tomwer/core/log/__init__.py,sha256=KGCK6l3cxffNGnNEYGQzbjSccFD44eR951QA8DOXv7s,71
264
+ tomwer/core/log/__init__.py,sha256=OB8j-nJvheD9_o9SkU3VLy-sOcZFQnH6o3m1RG_9WN8,70
266
265
  tomwer/core/log/processlog.py,sha256=Go7hcznjw2ZazQQYVJbCTcrnZjatlh2PBoD6oYkelAQ,2342
267
266
  tomwer/core/process/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
268
267
  tomwer/core/process/output.py,sha256=DFHJX0nOGMX1_nO5elviwRMT0ICjrtYrZp0hzhWs75A,1841
269
268
  tomwer/core/process/task.py,sha256=0TqjX-bpCFvtqXGBC4WlBgMMnyh5bTEuvBHfA6U2igw,3411
270
269
  tomwer/core/process/utils.py,sha256=ynblJtgrObyupOice614G1qdrG6IL2t-vVPtlv15e3c,2634
271
270
  tomwer/core/process/cluster/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
272
- tomwer/core/process/cluster/supervisor.py,sha256=3KExxXctQ-Jy3mEsZ5nvRRGlr6u3uvUwwsrirhtdopU,2527
271
+ tomwer/core/process/cluster/supervisor.py,sha256=t7LlcfzEewQCECHFVKsd3mv_iZp_IHFnr1_hYKviBGg,2526
273
272
  tomwer/core/process/conditions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
274
273
  tomwer/core/process/conditions/filters.py,sha256=xOSQsfJA5aafgzQhMLhSo--mNAuRMUSKmbPugktUogM,5833
275
274
  tomwer/core/process/control/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -304,7 +303,7 @@ tomwer/core/process/drac/binning.py,sha256=uWIyAzQMhUjh5d74DUnbDgjRv4zMZtdbi6U0W
304
303
  tomwer/core/process/drac/dracbase.py,sha256=_EYcZscvNpLpSc6cuy6nmNKYWo2C8u6Ke_oXrLjOBiM,5639
305
304
  tomwer/core/process/drac/gallery.py,sha256=bQosh4xbTWj8Vn_vqepyJ1QMfLcVGxh7uPJ0ysLtx5o,4790
306
305
  tomwer/core/process/drac/output.py,sha256=ySwvMigBVvtQqrkG67jq384uevVKeOX-Vd8E2urs_Lg,235
307
- tomwer/core/process/drac/processeddataset.py,sha256=yWFfb7-CeYwLm1g8hYt7zVRgV_XNHXzfONxYPW8me0A,5425
306
+ tomwer/core/process/drac/processeddataset.py,sha256=pp4uW249k7qFb1q1yZCtU1fbjoD9Y9onL5w3mOcxrWU,5839
308
307
  tomwer/core/process/drac/publish.py,sha256=S6UZ39Mv0I9A5bKQig5zohFenRPonu-oxK6DEUeAvD4,3845
309
308
  tomwer/core/process/drac/rawdataset.py,sha256=mB4sNTM1rx46n5whjIlY4xq1gz4_rbaS7yAS3QE2iT0,5175
310
309
  tomwer/core/process/drac/tests/test_gallery.py,sha256=WZaK42Y5S8sNrzgTToqctYvle8Xc1YBs3u6moei9ZMc,2319
@@ -317,12 +316,12 @@ tomwer/core/process/edit/nxtomoeditor.py,sha256=HUYInTVIUbqVtFXQKMCOpQ-tvgFz5w3U
317
316
  tomwer/core/process/edit/tests/test_darkflatpatch.py,sha256=0QOjUgiYkjuWDZvI5pkuiViK4HUJA5E2sXF5LXtf_vY,9366
318
317
  tomwer/core/process/edit/tests/test_imagekey_editor.py,sha256=ft-xDMRk6CRs7DehNEnh1uJ9gLKJ-SxZAb0GmsLek0w,2345
319
318
  tomwer/core/process/reconstruction/__init__.py,sha256=G_vePtIyh1WlXtcmOyQI3nRsP-F0bsaDSdLWHC0bVzo,159
320
- tomwer/core/process/reconstruction/output.py,sha256=_8kF_qhkXMW8f_u7xAi0u0KZLsD4GEiM6uaT7ZAco6g,4074
319
+ tomwer/core/process/reconstruction/output.py,sha256=LMVH71rybFR1j-DTCo48k5M3feKuLBq9jE4n01qJAec,4118
321
320
  tomwer/core/process/reconstruction/params_cache.py,sha256=GTchgCH1Db7fuYsSGxSF6wCTeV5grlYQh5ab198nmOk,1527
322
321
  tomwer/core/process/reconstruction/paramsbase.py,sha256=6PjFcO0yYs_apgv2MImGSDLsBgQ7UeK2TSBLz28HYgc,6344
323
322
  tomwer/core/process/reconstruction/axis/__init__.py,sha256=VSQkN6M6JvM_c55OiboNyJUW8Zs1wkkQgv1JYmzvIr8,80
324
323
  tomwer/core/process/reconstruction/axis/anglemode.py,sha256=4IFrqYSeWEMs14GZHipr1u9Njm2fLhF7qJHq9_kWfeY,537
325
- tomwer/core/process/reconstruction/axis/axis.py,sha256=RjK_LX9rowqAx7J3VOE37wFmviH5qUSRBWyMv7CBo3A,17097
324
+ tomwer/core/process/reconstruction/axis/axis.py,sha256=t1FCHRfUh4nT7iX2c8ID6DytvaUprDAehisp9OKyqrA,17096
326
325
  tomwer/core/process/reconstruction/axis/mode.py,sha256=Bp3Kz5fK9lIZdDvGlc3AAFoDo6d4fqezV37cX9lPiBI,9541
327
326
  tomwer/core/process/reconstruction/axis/params.py,sha256=yabw4l2TDyssc0xwXS_WQ7n3hEoDtAJtl_chDr_BAhw,28276
328
327
  tomwer/core/process/reconstruction/axis/projectiontype.py,sha256=U8ZZA2o3tONpUkzWLL-MXTahtJGJMQofpJOVkuDNc8Q,184
@@ -333,9 +332,9 @@ tomwer/core/process/reconstruction/darkref/darkrefscopy.py,sha256=D0i__aTsEvfJg_
333
332
  tomwer/core/process/reconstruction/darkref/params.py,sha256=vrDN8bZu28E4zLuHJzNvIIyyZq-4yhX9k9itXYCJ2iM,8756
334
333
  tomwer/core/process/reconstruction/darkref/settings.py,sha256=35jliuOIjMKTOJjgn4uiotcDEr6RskpLHfRWWLm76dc,188
335
334
  tomwer/core/process/reconstruction/nabu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
336
- tomwer/core/process/reconstruction/nabu/castvolume.py,sha256=4VEVnJxWfG8_Ku2uhUSQAgGfvP_08mXswmC3bHU7E4M,9317
335
+ tomwer/core/process/reconstruction/nabu/castvolume.py,sha256=DGNj3YF97GRABy4xvhjjv8_IgyWoRb5TkBQcDFlpUDM,9945
337
336
  tomwer/core/process/reconstruction/nabu/helical.py,sha256=gauUkoPiShvnvMQrCQXv28g0yLe-GceML5kYMSXmNIg,1997
338
- tomwer/core/process/reconstruction/nabu/nabucommon.py,sha256=fMMplu59iuh5bh_06JIVtSWRPXpThL4NJD_JRl8NVNk,24555
337
+ tomwer/core/process/reconstruction/nabu/nabucommon.py,sha256=6jOdKpUW5MbRkf53evu4-ZBkQaNWMfl799-f0zQ9-1Q,24554
339
338
  tomwer/core/process/reconstruction/nabu/nabuscores.py,sha256=e5tRG1QtmVAdXb8KHMTMtBXA3KQXqKKcqipY2HzMURg,25275
340
339
  tomwer/core/process/reconstruction/nabu/nabuslices.py,sha256=WAmNlfyRWL0zhEE8jMjMg7WyzPM4BcBA6bWpaH8O53A,32101
341
340
  tomwer/core/process/reconstruction/nabu/nabuvolume.py,sha256=Fn0tkPDTDJQaMEJA4LzpPp0ZtG4MIu9YN82-jesxRKo,20052
@@ -351,10 +350,10 @@ tomwer/core/process/reconstruction/normalization/normalization.py,sha256=lG9eqfz
351
350
  tomwer/core/process/reconstruction/normalization/params.py,sha256=WNCuA5A5EuiWJjvKqY309Eiaa7THocgnG7owkQFHdyc,3418
352
351
  tomwer/core/process/reconstruction/saaxis/__init__.py,sha256=ZEOu0nZWlMyBoX_A64yeEjVflE5x4iWSpYLTgs45g0o,137
353
352
  tomwer/core/process/reconstruction/saaxis/params.py,sha256=E16GiHpSXh28p6BIsSaWMY9y2K-yMRRhXtFf6stUFRA,4204
354
- tomwer/core/process/reconstruction/saaxis/saaxis.py,sha256=dfPVPEL5YAIsJkAwjZpbQCPve1dgaI0L4ooxLKxYpvw,30166
353
+ tomwer/core/process/reconstruction/saaxis/saaxis.py,sha256=un4WZKGh3DGlP-7aDcIMSA13unTLMA2BnjR3SRNb4vA,30165
355
354
  tomwer/core/process/reconstruction/sadeltabeta/__init__.py,sha256=WDYJxfqPnz5IeLPCX5W8UEO8-Z-NSH79gkqp2DZn1bM,162
356
355
  tomwer/core/process/reconstruction/sadeltabeta/params.py,sha256=ziAlTtQLy4EItIprFxDOm2Td1emHpSpnQb58niF1tI0,2691
357
- tomwer/core/process/reconstruction/sadeltabeta/sadeltabeta.py,sha256=2HhoaWMiXKvJvpQ_J0ox6Tkn2ryqVmOCLt-ksxGOnt4,29076
356
+ tomwer/core/process/reconstruction/sadeltabeta/sadeltabeta.py,sha256=bAO0dYSnMdgbBHlcU-roRC7sGqLIpi_rlC7cMXFInLI,29075
358
357
  tomwer/core/process/reconstruction/scores/__init__.py,sha256=aTWranL8RRGSMKOSDkkjhaqWisgZdP9Xgx7GoFhLwJo,282
359
358
  tomwer/core/process/reconstruction/scores/params.py,sha256=V6oOz6my6EghBeRC4L3-7fH6xWu29Pi4RsOVKQXXvT4,6148
360
359
  tomwer/core/process/reconstruction/scores/scores.py,sha256=xbmUSiGWCq8Ux4E3rIjqE6ZGUy5I-k7n3HXxrgqXX8E,5888
@@ -421,7 +420,7 @@ tomwer/core/scan/tests/test_scan.py,sha256=mHFPi2Tc7Z2_5rWvAp3YmObVSTB5yi-sTkHm1
421
420
  tomwer/core/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
422
421
  tomwer/core/tests/test_scanutils.py,sha256=xWwd1nycVDWmFaIaL2gQ_xxrUMhVCARaNHI2SxT9NOI,844
423
422
  tomwer/core/tests/test_utils.py,sha256=_XtrI9gk2mx2_owFXHZIbVheUIDHBPjVru_vOwK0_FU,9349
424
- tomwer/core/utils/__init__.py,sha256=_ivtX4ENKOU5C6t3zimRwQtXLLnLBZYJtHLsuLkVzno,26
423
+ tomwer/core/utils/__init__.py,sha256=8GD92NUNwdr5L634HnK3zOlZeFVc2StgSfiXSu6WXaU,25
425
424
  tomwer/core/utils/char.py,sha256=Bw2VhkjCAsTKhw_2Vn-uLqEGkrBjujqiJkCC-eiOmRE,363
426
425
  tomwer/core/utils/deprecation.py,sha256=D3hS_ZzBQgjYG5UmZW5KaPPlHaH1OZVXePGCdIVtHyA,3282
427
426
  tomwer/core/utils/dictutils.py,sha256=9BEwERAYGL4tW06jTNGhgsJ2f4dojtYMmNixHoRF3XA,466
@@ -457,25 +456,25 @@ tomwer/gui/__init__.py,sha256=OfM3Lqb0upMvLzigT35R010BS8vmqgsvAQsNWJRLxmo,100
457
456
  tomwer/gui/fonts.py,sha256=nacsUIwMyB4TBNT4FdgoxFCODtrB7oJXzmjGzLF8EDk,134
458
457
  tomwer/gui/icons.py,sha256=J-12uD8qrGUk3h5sCq9CfOvwcfuNhFc96vIfOPQorSg,11388
459
458
  tomwer/gui/illustrations.py,sha256=RS5dswvKGqBIyXamm4pNFq7HeSGOE2jNanF3WQj206s,3975
460
- tomwer/gui/imagefromfile.py,sha256=bJPoQUc-DEzwiBTkTOttsc7BC-xZrfYOMqdiFK5rZEo,4106
461
- tomwer/gui/metadataloader.py,sha256=PIa2MqvfUUg47mVzg-gstORCxqMshG7OZNjHVR8x9oo,957
462
- tomwer/gui/qconfigfile.py,sha256=RKgpnTnCCu2rg-BHq-KS7P3kBfHiGMFODhFPVAFYgL0,783
463
- tomwer/gui/qlefilesystem.py,sha256=1nkxUtV5NlBaGM6F4pyzRsccN4KuwbstxNDVAzObL_U,635
464
- tomwer/gui/settings.py,sha256=Q5KX0sAhrGRR8Au4oumEbgkYpydOtRR7XSknL4EvNRI,406
465
- tomwer/gui/stackplot.py,sha256=GvpdOfQNHMMXz8pF5xCz1HesfyaRvRfGBBhz5aM_Cqc,3553
459
+ tomwer/gui/imagefromfile.py,sha256=2idGysb4AyQ3lkuz2i0wmY2BTZLG1vixsFAg_QgbdEM,4105
460
+ tomwer/gui/metadataloader.py,sha256=46Tm17A9dRfuOkxBpcL38QlVbilTEJ2uTpDPGfFYn34,956
461
+ tomwer/gui/qconfigfile.py,sha256=ligRZwQpuVinrsZdA81-Balhvk2SFjuQ_BNBzEJkc1c,782
462
+ tomwer/gui/qlefilesystem.py,sha256=DFysSxrmnsyq0XTUNnxEijKd2uLoi9R7Sja5y83mH08,634
463
+ tomwer/gui/settings.py,sha256=7LH-v6DM_V82j--aoHO7BaRawCsJsfgE3_6yI90TD7E,405
464
+ tomwer/gui/stackplot.py,sha256=WE_GOa0RzwPcMiop98ljM_r-4g4bSy-Jee9h8v3kwO8,3552
466
465
  tomwer/gui/stacks.py,sha256=4lPRUjqGhif_oxArV7HHllbFsmLTdPJgHe4QD8TRz8k,13558
467
- tomwer/gui/cluster/__init__.py,sha256=pdZHncbFM6AZ2a1d3DUnlJ7cLvp1ew2a7E6ozt6FX7s,37
466
+ tomwer/gui/cluster/__init__.py,sha256=QeukFHF5SISl4dsVtIGc8UoAlgMiXdAeG2nksocycic,36
468
467
  tomwer/gui/cluster/slurm.py,sha256=FIp9e7E48KEORabOKBVu7Wm7N9oQBKKUanBSs62hqs0,34374
469
468
  tomwer/gui/cluster/supervisor.py,sha256=5qgAbRoFQvQeZ1jy5Z-5p98QqdZxNM9hieOce2Dn_uE,15794
470
469
  tomwer/gui/cluster/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
471
470
  tomwer/gui/cluster/tests/test_cluster.py,sha256=Yz0nzPQmMhMj3lRsJ8lB3_d9tpeJ9iC-K24IgdhV08w,3205
472
471
  tomwer/gui/cluster/tests/test_supervisor.py,sha256=n2pOzORyrqgTpftaw8LxcVsqGFoLMRRliIqIj_-_6Z8,1895
473
- tomwer/gui/conditions/__init__.py,sha256=99XdhZIJbbflYhyKNPA1paakFe-acR29R2Qa1Y370m0,81
472
+ tomwer/gui/conditions/__init__.py,sha256=tR7WSGA_D6_HEqHrxqyIHrBU5rVZ4XN-xwYNrUS-ydI,80
474
473
  tomwer/gui/conditions/filter.py,sha256=lZ-gczKfq7KWtdU_vfyNfio1u1v4MLSAbbrHt_DDPeQ,4234
475
- tomwer/gui/configuration/__init__.py,sha256=N2l78DVXV1XimZT68A8hzqt3f9WVuS610h3r4RcS_ZY,124
474
+ tomwer/gui/configuration/__init__.py,sha256=8TF_yRZ1-lxMY_4VPXnwfR6ja7jOFmdv0JJmh8Q52Rs,123
476
475
  tomwer/gui/configuration/action.py,sha256=xmMJAtkLKJkLOvhGRAS8i2cge54I16xxYTRQaWHOqT4,2512
477
476
  tomwer/gui/configuration/level.py,sha256=mwMmCRAe4EI9gyki0k4jtcRCUOWfuu_Dfm_9IYF7qpc,653
478
- tomwer/gui/control/__init__.py,sha256=DTl2CIticYgeUFkOSBQTQCtsbBB1iIf2xTORQbCB5DU,93
477
+ tomwer/gui/control/__init__.py,sha256=Pe27j1z4qWIXC9gSUcMDo3dgL5SXyxs_AFUFUo9zOxA,92
479
478
  tomwer/gui/control/actions.py,sha256=9W1B6EIgQT3NIeEIPz_wO9mTq2qdkiaeC6W3M1CwtNQ,3392
480
479
  tomwer/gui/control/datadiscovery.py,sha256=MqrjldmV4zgQpF875ZbjcSwcsIN9e6IGUmH_nj9tiSc,6146
481
480
  tomwer/gui/control/datalist.py,sha256=UnHs7katVq_MiIsugGkkyoqqj_lH4iXrpEbkq3m8VHQ,40465
@@ -517,20 +516,20 @@ tomwer/gui/control/tests/test_scanvalidator.py,sha256=rJJZuj73thyqljWEbVx1rREbXC
517
516
  tomwer/gui/control/tests/test_single_tomo_obj.py,sha256=wGOkThfP_gpVTbZ6FOgN23UJoXRDiymOOTJmUBD415Q,2278
518
517
  tomwer/gui/control/tests/test_volume_dialog.py,sha256=AEbawlIr05oqXhuqYEgJDEVIf5Zi84ks5uT-tBJUKNE,6742
519
518
  tomwer/gui/control/tests/test_volumeselector.py,sha256=cF33xpGiRM2iORHxgGWuTDHLeV12QqaHlBbxJVqwWuI,2090
520
- tomwer/gui/dataportal/__init__.py,sha256=Ps-1kaGj4j6jMR_W73OVD_eHqGHeAry0iJJJRE4y3xc,38
519
+ tomwer/gui/dataportal/__init__.py,sha256=Ql9igxJsXj6yiykmscFWR1DTH93MrNRctdTC1liPAO4,37
521
520
  tomwer/gui/dataportal/createscreenshots.py,sha256=1XcvaTxZ4dZwWtcyQW4dBkUf9HpJI6PlowZHsJyuzRg,3128
522
521
  tomwer/gui/dataportal/gallery.py,sha256=PHXcbAAoflNSk5Et3f7B9MBtxhJjhq6SGx-_l9itBYY,4873
523
522
  tomwer/gui/dataportal/outputformat.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
524
523
  tomwer/gui/dataportal/publish.py,sha256=LnRHEUiBc6hLyCbCjwjmYUNowr01rrnjayqwQeLPCkw,3731
525
524
  tomwer/gui/dataportal/tests/test_create_screenshots_gui.py,sha256=-1UL8VvMLGfPEvX5yg1VfJJMSVVxjIIAfLuYp4SzeuE,714
526
525
  tomwer/gui/dataportal/tests/test_gallery_gui.py,sha256=LTXPplIMJbJW8KgGY_oYYukwErCBbdao5QDnl7XwfO0,529
527
- tomwer/gui/debugtools/__init__.py,sha256=EhLXvY85SezZ2DM83Liegx5pmBIfuDNaD-_crg4wVTw,79
526
+ tomwer/gui/debugtools/__init__.py,sha256=ZPFE7N29uZlGgjLF1n37jOmEQgJZqX9GIgRnnFSX8Fs,78
528
527
  tomwer/gui/debugtools/datasetgenerator.py,sha256=9Yee0abZklPJqMZGgR2YfMggWLElmEODpuYXXGB85n4,9310
529
528
  tomwer/gui/debugtools/objectinspector.py,sha256=g_uwELgYWd-TOmUldevLn_6Jstdch4YCfqH7d7J8GvA,1595
530
- tomwer/gui/dialog/QDataDialog.py,sha256=yjgzkBSJEaL1qMKQ2obIfcdlHt1cg_cBHiabkmQT5eA,3252
531
- tomwer/gui/dialog/QVolumeDialog.py,sha256=A0B2BCcrZn8Ir_1NRuEL_U7Yj9sO0GEgOmB2w7-5-ZA,18565
529
+ tomwer/gui/dialog/QDataDialog.py,sha256=XrLn8fA7jrrZluRDuufDdVYgEa2W5Vvtr9lFpsQL67M,3251
530
+ tomwer/gui/dialog/QVolumeDialog.py,sha256=4SqohhUnQb9gkIxdi_0R4X3McsNK_v_tVntHj7ejspM,18564
532
531
  tomwer/gui/dialog/__init__.py,sha256=gGi_AduLD4h7DPOYLVkiSDfy-F5jB7alL1wWbKgPs60,88
533
- tomwer/gui/edit/__init__.py,sha256=DTl2CIticYgeUFkOSBQTQCtsbBB1iIf2xTORQbCB5DU,93
532
+ tomwer/gui/edit/__init__.py,sha256=Pe27j1z4qWIXC9gSUcMDo3dgL5SXyxs_AFUFUo9zOxA,92
534
533
  tomwer/gui/edit/dkrfpatch.py,sha256=WC7bg7cSuUahNbyLgFGmE9_YWoABWC095ctE9Mqvsb8,16010
535
534
  tomwer/gui/edit/imagekeyeditor.py,sha256=Gt-lA_HqZGCzRTJn8l_TWPV7RJAYICW_Nda6Zj_FS00,28201
536
535
  tomwer/gui/edit/nxtomoeditor.py,sha256=pJBrtwW_lhlf8amnVkbieZmtUW9NVSjFgWsHTgzqZxM,22616
@@ -539,7 +538,7 @@ tomwer/gui/edit/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3h
539
538
  tomwer/gui/edit/tests/test_dkrf_patch.py,sha256=L0fO2nqqK74EOIZTPQKjO03qsAiXbqjj7FCGMrpRz3k,6685
540
539
  tomwer/gui/edit/tests/test_image_key_editor.py,sha256=6sIGM_DjU_KjspnVKB2UDhWh_BLDhYP8rS6U1fAZXkk,4647
541
540
  tomwer/gui/edit/tests/test_nx_editor.py,sha256=iEm8th1ahclnLhNHVHtdvQQvazX2znteYTJUGeEfXpw,13865
542
- tomwer/gui/reconstruction/__init__.py,sha256=Hbmaar65YftLApEuTwzGfQbTzRJXNbrsH11T2dRPdrw,96
541
+ tomwer/gui/reconstruction/__init__.py,sha256=Ozf9bYay5hVhe1clExeM_MLhcAuu624i5BP1xonWlB0,95
543
542
  tomwer/gui/reconstruction/axis/AxisMainWindow.py,sha256=7w2LhdQ1pa8vU9U-XTA3ohGQfYKk5ETZ79s_xl4Zxx8,9641
544
543
  tomwer/gui/reconstruction/axis/AxisOptionsWidget.py,sha256=M47xflZ68KkTDg8tksFt8n7ZFVIr8tJxstlPyG4Odq0,12168
545
544
  tomwer/gui/reconstruction/axis/AxisSettingsWidget.py,sha256=7GpHteE2j9RUo-jUQoJdXJ-GnIi9VnY13Lveq3mvd1M,28120
@@ -600,7 +599,7 @@ tomwer/gui/samplemoved/selectiontable.py,sha256=CzQnJBxfIeoZSw8aR0VvrsaIg6fozREI
600
599
  tomwer/gui/stitching/SingleAxisStitchingWidget.py,sha256=syBzSf8yRE9poZh0UKqZcyD8ZmEt-vama8bVRsGBuDw,13023
601
600
  tomwer/gui/stitching/StitchingOptionsWidget.py,sha256=c5kRZOMuGKK_CgK28IkBawaVvK2cmczbWF4TcVUZxq4,18186
602
601
  tomwer/gui/stitching/StitchingWindow.py,sha256=NlUX7htpS0BrlgBLeh_Mr5JpTzzyPVETU-j2_crQt20,24360
603
- tomwer/gui/stitching/__init__.py,sha256=n5iHX8yELWAqpIUS1FTu6WsJW4KNPKrEQunbpLiBpzY,46
602
+ tomwer/gui/stitching/__init__.py,sha256=jYSG4DSAtMGm9Yuf4MVdlSdMO8JKOp_t-8NKsnR92LU,45
604
603
  tomwer/gui/stitching/action.py,sha256=7CkACYKsRt3c_6PgrmQVZwSi9UwvGrQVUymJytHbqcE,1659
605
604
  tomwer/gui/stitching/alignment.py,sha256=QGWnogvBSbx3kk8lrFDoipmhqbVHEe46WGAeOorlHQ8,4001
606
605
  tomwer/gui/stitching/axisorderedlist.py,sha256=2Os8cjZM9B-LCYB9p6JW7MpqXWaVd6oeWSqP4ZbSlBM,17980
@@ -646,7 +645,7 @@ tomwer/gui/utils/qt_utils.py,sha256=QMXte_vdCEwr4Vybt5sopczQ_OuRd1W5h6SydqFH0F8,
646
645
  tomwer/gui/utils/sandboxes.py,sha256=QfSRhL1KrFhS2Wr734Tzvp1OjTp82Ozc0ULr-JycFlI,6145
647
646
  tomwer/gui/utils/scandescription.py,sha256=T4-tu6B8ZhpE_9sMdZ_4V7iS81gyEQxi3Yenik2I24o,2009
648
647
  tomwer/gui/utils/scrollarea.py,sha256=EcHwz5eR0RJW4swhm-NuIEj4tcvkpdiFznXF0490gqo,465
649
- tomwer/gui/utils/slider.py,sha256=Dn__27Hv8T5_Nlg87Y9UlrZ_gEriAE8CHp8DVlLbkDM,2155
648
+ tomwer/gui/utils/slider.py,sha256=NLooxIa_2dMv60UAt_PV2BKcd15WuNv1EiV1JRdVcu0,2154
650
649
  tomwer/gui/utils/splashscreen.py,sha256=Wt6lDby3irZn6Vc52whPRTbJOzmMA66VH6d5cIXy_dI,489
651
650
  tomwer/gui/utils/step.py,sha256=epEKQwj2byRFH_Lc2XUuMGOVcrKR0m1iFP7HPqb5iG0,5397
652
651
  tomwer/gui/utils/unitsystem.py,sha256=0g6pYemy2MpkGQJGuuR9yCwbZ9mt3nPA1dqAvAqUHRo,5994
@@ -659,7 +658,7 @@ tomwer/gui/utils/tests/test_completer.py,sha256=QwV9DC48Sviv4G0Z3PxMfDq_c-T8Uemb
659
658
  tomwer/gui/utils/tests/test_line_selector.py,sha256=42EbSc81A6uYwTixuZr0R4pexAX3fMU0LdKqgM0SIM8,618
660
659
  tomwer/gui/utils/tests/test_splashscreen.py,sha256=sJZzsvJ1-VpNuQ2wifRz4a6PbU7rZQVXZzMVMGYpZ0A,253
661
660
  tomwer/gui/utils/tests/test_vignettes.py,sha256=xgTmE7QB5db12Wqe32v5zA7hx0PtE5bqQbHtStVzerk,2265
662
- tomwer/gui/visualization/__init__.py,sha256=IehaMf1HlQ7pIZWbSGVfplNSc6mKGVobsZfLuT1v62c,96
661
+ tomwer/gui/visualization/__init__.py,sha256=SSJ9-dlyNdnairP1L2s4909HDu2ROntVHWAus7qM-Zo,95
663
662
  tomwer/gui/visualization/dataviewer.py,sha256=mIF09tD5psqbL9PUkSOYF6ywPYhiJAMs9Sr3QwwOF5E,13536
664
663
  tomwer/gui/visualization/fullscreenplot.py,sha256=PwPbhbdU23_ngZ7FM_lhM7zxY6Xd1AbdACGVG6YfwrM,3637
665
664
  tomwer/gui/visualization/imagestack.py,sha256=DBMEFBo0BbdFCscL8EMSumXkWVl_p7_uk4UvEtsSWRw,15777
@@ -681,7 +680,7 @@ tomwer/gui/visualization/test/test_reconstruction_parameters.py,sha256=l3Mfy-Vb3
681
680
  tomwer/gui/visualization/test/test_sinogramviewer.py,sha256=NwJI7r6chsnmp5mZOIUCTl1o3c_CRBnD2WB6dC9THlU,1750
682
681
  tomwer/gui/visualization/test/test_stacks.py,sha256=OrchwJ0L0Sqi9f3o8_P5LO-4bI6JxC-P26DSFXcA2Js,6214
683
682
  tomwer/gui/visualization/test/test_volumeviewer.py,sha256=ws8m3JczvpwCJygXqBkxSiUPwLtD_8Q_KWNOsIXGu5w,2413
684
- tomwer/io/__init__.py,sha256=J5bGIp66UCdtrTdINepiNzuiIIj_sIeh_gWXWNToxXo,82
683
+ tomwer/io/__init__.py,sha256=IYe99zDNkHovOno-iehiAyM_jgxBzYyw_WMWrG45vBg,81
685
684
  tomwer/io/utils/__init__.py,sha256=SrC5etCrm-3oMkUc4PPRqSdkIwTvKdtnBTfxh35_exI,272
686
685
  tomwer/io/utils/h5pyutils.py,sha256=Y2vvvVTyA8r7_J13_6C1OeHj89v7YQUsubceI3tKsok,1641
687
686
  tomwer/io/utils/raw_and_processed_data.py,sha256=XMAyMTbxB7orxHsYOPuWQd5QiGQB_xesx8bMf2KyW0g,3208
@@ -848,7 +847,6 @@ tomwer/synctools/tests/test_darkRefs.py,sha256=1OgWaV-hgDmi4rkh0hxjCW_codBAnxNhp
848
847
  tomwer/synctools/tests/test_foldertransfer.py,sha256=ZFIJWSjgYAWw3ktzamid5DJZNnMkAV6Pj72dKG69cJc,12024
849
848
  tomwer/synctools/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
850
849
  tomwer/synctools/utils/scanstages.py,sha256=vIUKVDSfM2UwPjjmZTiIN1tNg4antnGcSPv1aYapJCY,7830
851
- tomwer/tasks/reconstruction/cleardarkflat.py,sha256=NW7xtaxF8-VRz0fFOUyotnyG5514YamwPtX6r2SZ-0s,1329
852
850
  tomwer/tests/__init__.py,sha256=dPPaIvpzHssjwxsMzYJM_gxQ2e0cnRyQHXxi9ux6ZOY,19
853
851
  tomwer/tests/conftest.py,sha256=0XlKfOrVtPg8VmyQn4BoK_mzcliFUtacDGLlZ5wD_PM,1912
854
852
  tomwer/tests/datasets.py,sha256=QXQ3jSwgWzfq4CaELOSrk9kHg5GmrP7kGHsdOlNSEIE,336
@@ -905,9 +903,9 @@ tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_volume_viewer
905
903
  tomwer/tests/test_ewoks/test_conversion.py,sha256=a8cEWbErXiFCAkaapi0jeEoRKYxcFQCoa-Jr_u77_OM,3656
906
904
  tomwer/tests/test_ewoks/test_single_node_execution.py,sha256=YBUHfiAnkciv_kjj7biC5fOs7c7ofNImM_azGMn4LZM,2813
907
905
  tomwer/tests/test_ewoks/test_workflows.py,sha256=Eq80eexf5NVL7SzvwctLOaUeuQ8V3vDiFiHgbJA4Yb8,4871
908
- tomwer-1.4.6.dist-info/LICENSE,sha256=62p1wL0n9WMTu8x2YDv0odYgTqeSvTd9mQ0v6Mq7lzE,1876
909
- tomwer-1.4.6.dist-info/METADATA,sha256=TQPiVdXJJAx3zhFXOq4jRbjX0WSafNX2ZmOyrDeTQWk,13377
910
- tomwer-1.4.6.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
911
- tomwer-1.4.6.dist-info/entry_points.txt,sha256=py3ZUWvGnWGc5c7Yhw_uBTm8Fmew0BDw3aQZnWMBNZI,500
912
- tomwer-1.4.6.dist-info/top_level.txt,sha256=Yz5zKh0FPiImtzHYcPuztG1AO8-6KEpUWgoChGbA0Ys,21
913
- tomwer-1.4.6.dist-info/RECORD,,
906
+ tomwer-1.4.8.dist-info/LICENSE,sha256=62p1wL0n9WMTu8x2YDv0odYgTqeSvTd9mQ0v6Mq7lzE,1876
907
+ tomwer-1.4.8.dist-info/METADATA,sha256=N3KGtY5cMcf1QBDrJWJsGSetIU0TUEdUfV0okormuLI,13415
908
+ tomwer-1.4.8.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
909
+ tomwer-1.4.8.dist-info/entry_points.txt,sha256=py3ZUWvGnWGc5c7Yhw_uBTm8Fmew0BDw3aQZnWMBNZI,500
910
+ tomwer-1.4.8.dist-info/top_level.txt,sha256=Yz5zKh0FPiImtzHYcPuztG1AO8-6KEpUWgoChGbA0Ys,21
911
+ tomwer-1.4.8.dist-info/RECORD,,
@@ -1,19 +0,0 @@
1
- <?xml version='1.0' encoding='utf-8'?>
2
- <scheme version="2.0" title="" description="">
3
- <nodes>
4
- <node id="0" name="center of rotation finder" qualified_name="orangecontrib.tomwer.widgets.reconstruction.AxisOW.AxisOW" project_name="tomwer" version="" title="center of rotation finder" position="(375.0, 146.0)" />
5
- <node id="1" name="scan selector" qualified_name="orangecontrib.tomwer.widgets.control.DataSelectorOW.DataSelectorOW" project_name="tomwer" version="" title="scan selector" position="(150.0, 115.0)" />
6
- </nodes>
7
- <links>
8
- <link id="0" source_node_id="1" sink_node_id="0" source_channel="data" sink_channel="data" enabled="true" source_channel_id="data" sink_channel_id="data" />
9
- </links>
10
- <annotations />
11
- <thumbnail />
12
- <node_properties>
13
- <properties node_id="0" format="literal">{'_ewoks_default_inputs': {'data': None, 'axis_params': {'MODE': 'sino-coarse-to-fine', 'POSITION_VALUE': None, 'CALC_INPUT_TYPE': 'transmission_nopag', 'ANGLE_MODE': '0-180', 'SINOGRAM_LINE': 'middle', 'SINOGRAM_SUBSAMPLING': 10, 'AXIS_URL_1': '', 'AXIS_URL_2': '', 'LOOK_AT_STDMAX': False, 'NEAR_WX': 5, 'FINE_STEP_X': 0.1, 'SCALE_IMG2_TO_IMG1': False, 'NEAR_POSITION': 'right', 'PADDING_MODE': 'edge', 'FLIP_LR': True, 'COMPOSITE_OPTS': {'theta': 5, 'oversampling': 4, 'n_subsampling_y': 40, 'take_log': True, 'near_width': 40}, 'COR_OPTIONS': '', 'MOTOR_OFFSET': 0.0, 'X_ROTATION_AXIS_PIXEL_POSITION': 0.0}, 'gui': {'mode_is_lock': False, 'value_is_lock': False, 'auto_update_estimated_cor': True, 'y_axis_inverted': True}}, 'controlAreaVisible': True, 'savedWidgetGeometry': b'\x01\xd9\xd0\xcb\x00\x03\x00\x00\x00\x00\x017\x00\x00\x00\xe5\x00\x00\x06H\x00\x00\x03\xa6\x00\x00\x017\x00\x00\x01\n\x00\x00\x06H\x00\x00\x03\xa6\x00\x00\x00\x00\x00\x00\x00\x00\x07\x80\x00\x00\x017\x00\x00\x01\n\x00\x00\x06H\x00\x00\x03\xa6', '__version__': 1}</properties>
14
- <properties node_id="1" format="literal">{'_scanIDs': ['hdf5:scan:/home/payno/Datasets/tomography/bamboo_hercules/bambou_hercules_0001/bambou_hercules_0001_0000.nx?path=/entry0000'], 'controlAreaVisible': True, 'savedWidgetGeometry': b'\x01\xd9\xd0\xcb\x00\x03\x00\x00\x00\x00\n\xa0\x00\x00\x01Z\x00\x00\x0b\xcb\x00\x00\x03\x06\x00\x00\n\xa0\x00\x00\x01Z\x00\x00\x0b\xcb\x00\x00\x03\x06\x00\x00\x00\x01\x00\x00\x00\x00\x07\x80\x00\x00\n\xa0\x00\x00\x01Z\x00\x00\x0b\xcb\x00\x00\x03\x06', '__version__': 1}</properties>
15
- </node_properties>
16
- <session_state>
17
- <window_groups />
18
- </session_state>
19
- </scheme>
@@ -1,38 +0,0 @@
1
- """
2
- Contains task to clear reduced dark and flat frames
3
- """
4
- from __future__ import annotations
5
-
6
- from tomoscan.scanbase import TomoScanBase as TomoscanScanBase
7
-
8
- from processview.core.manager import DatasetState, ProcessManager
9
- from processview.core.superviseprocess import SuperviseProcess
10
-
11
- from tomwer.tasks.task import Task
12
- from tomwer.core.scan.scanbase import TomwerScanBase
13
- from tomwer.core.scan.scanfactory import ScanFactory
14
- from tomwer.core.utils.scanutils import data_identifier_to_scan
15
- from tomwer.core.reconstruction.darkflat import params as dkrf_reconsparams
16
- from tomwer.utils import docstring
17
-
18
-
19
- class ClearReducedDarkAndFlat(
20
- Task,
21
- SuperviseProcess,
22
- input_names=("data",),
23
- output_names=("data",),
24
- ):
25
- """
26
- Task to clear reduced darks and flats. Both on disk and on the object cache.
27
- th goal of this task is to make sure the scan is cleared of any reduced frames to reprocess it later.
28
- """
29
- def run(self):
30
- scan = self.inputs.data
31
- if not isinstance(scan, TomoscanScanBase):
32
- raise TypeError(f"scan should be an instance of {TomoscanScanBase}. Got {type(scan)}")
33
- scan.set_reduced_flats(None)
34
- scan.reduced_flats_infos = None
35
- scan.set_reduced_darks(None)
36
- scan.reduced_darks_infos = None
37
-
38
- self.outputs.data = scan
File without changes