tomwer 1.3.0a6__py3-none-any.whl → 1.3.0a7__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.
@@ -42,6 +42,7 @@ from tomwer.core.scan.blissscan import BlissScan
42
42
  from tomwer.core.scan.nxtomoscan import NXtomoScan, NXtomoScanIdentifier
43
43
  from tomwer.gui.control.datalist import BlissHDF5DataListMainWindow
44
44
  from tomwer.gui.control.nxtomomill import NXTomomillInput, OverwriteMessage
45
+ from tomwer.core.process.output import ProcessDataOutputDirMode
45
46
  from ewoksorange.bindings.owwidgets import invalid_data
46
47
 
47
48
 
@@ -137,9 +138,10 @@ class NXTomomillOW(
137
138
  self.add(nxtomo_scan)
138
139
  else:
139
140
  self._scans.append(scan)
140
- self._ewoks_default_inputs[ # pylint: disable=E1137
141
- "output_dir"
142
- ] = self.widget.getOutputFolder()
141
+ output_dir = self.widget.getOutputFolder()
142
+ if isinstance(output_dir, ProcessDataOutputDirMode):
143
+ output_dir = output_dir.value
144
+ self._ewoks_default_inputs["output_dir"] = output_dir # pylint: disable=E1137
143
145
 
144
146
  @property
145
147
  def request_input(self):
@@ -156,7 +156,7 @@ class _DatasetGeneratorThread(threading.Thread):
156
156
  n_proj=self.n_proj,
157
157
  n_ini_proj=self.n_proj,
158
158
  create_ini_dark=self.create_ini_dark,
159
- create_ini_ref=self.create_ini_flat,
159
+ create_ini_flat=self.create_ini_flat,
160
160
  dim=self.dims[0],
161
161
  ).scan
162
162
  elif self.type_to_generate == BlissScan.__name__:
@@ -188,7 +188,7 @@ def compute_cor_nabu_growing_window_sinogram(
188
188
 
189
189
  corfinder = SinoCORFinder(
190
190
  dataset_info=adapt_tomwer_scan_to_nabu(scan),
191
- method="growing-window",
191
+ method="sino-growing-window",
192
192
  slice_idx=scan.axis_params.sinogram_line or "middle",
193
193
  subsampling=scan.axis_params.sinogram_subsampling,
194
194
  do_flatfield=has_darks and has_flats,
@@ -389,7 +389,7 @@ def compute_cor_nabu_sliding_window_sinogram(
389
389
 
390
390
  corfinder = SinoCORFinder(
391
391
  dataset_info=adapt_tomwer_scan_to_nabu(scan),
392
- method="sliding-window",
392
+ method="sino-sliding-window",
393
393
  slice_idx=scan.axis_params.sinogram_line or "middle",
394
394
  subsampling=scan.axis_params.sinogram_subsampling,
395
395
  do_flatfield=has_darks and has_flats,
@@ -35,8 +35,8 @@ def test_register_and_copy_darks_and_flats(
35
35
  scan_with_raw = MockNXtomo(
36
36
  scan_path=scan_folder_with_raw,
37
37
  create_ini_dark=True,
38
- create_ini_ref=True,
39
- create_final_ref=False,
38
+ create_ini_flat=True,
39
+ create_final_flat=False,
40
40
  n_proj=10,
41
41
  n_ini_proj=10,
42
42
  dim=12,
@@ -44,8 +44,8 @@ def test_register_and_copy_darks_and_flats(
44
44
  scan_without_raw = MockNXtomo(
45
45
  scan_path=scan_folder_without_raw,
46
46
  create_ini_dark=False,
47
- create_ini_ref=False,
48
- create_final_ref=False,
47
+ create_ini_flat=False,
48
+ create_final_flat=False,
49
49
  n_proj=10,
50
50
  n_ini_proj=10,
51
51
  dim=12,
@@ -260,7 +260,7 @@ class TestSinogramAlgorithm(unittest.TestCase):
260
260
  n_proj=10,
261
261
  n_ini_proj=10,
262
262
  create_ini_dark=True,
263
- create_final_ref=True,
263
+ create_final_flat=True,
264
264
  scan_range=360,
265
265
  dim=dim,
266
266
  ).scan
@@ -54,8 +54,8 @@ class TestNormalization(unittest.TestCase):
54
54
  scan_range=180,
55
55
  dim=dim,
56
56
  create_ini_dark=False,
57
- create_ini_ref=False,
58
- create_final_ref=False,
57
+ create_ini_flat=False,
58
+ create_final_flat=False,
59
59
  ).scan
60
60
 
61
61
  def tearDown(self) -> None:
@@ -43,7 +43,7 @@ def test_simple_future_tomo_obj(tmpdir):
43
43
  n_proj=10,
44
44
  n_ini_proj=10,
45
45
  create_ini_dark=False,
46
- create_ini_ref=False,
46
+ create_ini_flat=False,
47
47
  dim=10,
48
48
  ).scan
49
49
  future = asyncio.Future()
@@ -65,9 +65,9 @@ class TestHDF5Scan(unittest.TestCase):
65
65
  n_ini_proj=20,
66
66
  n_proj=20,
67
67
  n_alignement_proj=2,
68
- create_final_ref=True,
68
+ create_final_flat=True,
69
69
  create_ini_dark=True,
70
- create_ini_ref=True,
70
+ create_ini_flat=True,
71
71
  n_refs=5,
72
72
  ).scan
73
73
  self.assertEqual(scan_1.ff_interval, 20)
@@ -78,9 +78,9 @@ class TestHDF5Scan(unittest.TestCase):
78
78
  n_ini_proj=10,
79
79
  n_proj=10,
80
80
  n_alignement_proj=2,
81
- create_final_ref=False,
81
+ create_final_flat=False,
82
82
  create_ini_dark=True,
83
- create_ini_ref=True,
83
+ create_ini_flat=True,
84
84
  n_refs=1,
85
85
  ).scan
86
86
  self.assertEqual(scan_2.ff_interval, 0)
@@ -279,8 +279,8 @@ class TestMockNXtomo(unittest.TestCase):
279
279
  n_ini_proj=20,
280
280
  n_alignement_proj=2,
281
281
  create_ini_dark=True,
282
- create_ini_ref=True,
283
- create_final_ref=True,
282
+ create_ini_flat=True,
283
+ create_final_flat=True,
284
284
  n_refs=10,
285
285
  )
286
286
  self.assertTrue(0 in mock.scan.darks.keys())
@@ -57,7 +57,7 @@ class TestSupervisor(TestCaseQt):
57
57
  n_proj=10,
58
58
  n_ini_proj=10,
59
59
  create_ini_dark=False,
60
- create_ini_ref=False,
60
+ create_ini_flat=False,
61
61
  dim=10,
62
62
  ).scan
63
63
  self._scans.append(scan)
@@ -34,7 +34,7 @@ class TestSingletomoObj(TestCaseQt):
34
34
  n_proj=10,
35
35
  n_ini_proj=10,
36
36
  create_ini_dark=False,
37
- create_ini_ref=False,
37
+ create_ini_flat=False,
38
38
  dim=10,
39
39
  ).scan
40
40
 
@@ -67,8 +67,8 @@ class TestDarkOrFlatUrl(TestCaseQt):
67
67
  n_ini_proj=20,
68
68
  n_proj=20,
69
69
  create_ini_dark=True,
70
- create_ini_ref=True,
71
- create_final_ref=True,
70
+ create_ini_flat=True,
71
+ create_final_flat=True,
72
72
  )
73
73
  self._scan = hdf5_mock.scan
74
74
  self.scan_url = DataUrl(
@@ -135,8 +135,8 @@ class TestDarkRefPatchWidget(TestCaseQt):
135
135
  n_ini_proj=20,
136
136
  n_proj=20,
137
137
  create_ini_dark=True,
138
- create_ini_ref=True,
139
- create_final_ref=True,
138
+ create_ini_flat=True,
139
+ create_final_flat=True,
140
140
  )
141
141
  self._scanWithDarkAndRef = hdf5_mock.scan
142
142
 
@@ -145,8 +145,8 @@ class TestDarkRefPatchWidget(TestCaseQt):
145
145
  n_ini_proj=20,
146
146
  n_proj=20,
147
147
  create_ini_dark=False,
148
- create_ini_ref=False,
149
- create_final_ref=False,
148
+ create_ini_flat=False,
149
+ create_final_flat=False,
150
150
  )
151
151
  self._scan = hdf5_mock.scan
152
152
  assert len(self._scan.darks) == 0
@@ -360,9 +360,9 @@ class NXTomomillOutputDirSelector(qt.QWidget):
360
360
  self._manualRB.setChecked(True)
361
361
  else:
362
362
  if default_output is ProcessDataOutputDirMode.IN_SCAN_FOLDER:
363
- self._processedDataFolderRB.setChecked(True)
364
- elif default_output is ProcessDataOutputDirMode.PROCESSED_DATA_FOLDER:
365
363
  self._inScanFolder.setChecked(True)
364
+ elif default_output is ProcessDataOutputDirMode.PROCESSED_DATA_FOLDER:
365
+ self._processedDataFolderRB.setChecked(True)
366
366
  elif default_output is ProcessDataOutputDirMode.RAW_DATA_FOLDER:
367
367
  self._rawDataFolderRB.setChecked(True)
368
368
  else:
tomwer/version.py CHANGED
@@ -79,7 +79,7 @@ MAJOR = 1
79
79
  MINOR = 3
80
80
  MICRO = 0
81
81
  RELEV = "alpha" # <16
82
- SERIAL = 6 # <16
82
+ SERIAL = 7 # <16
83
83
 
84
84
  date = __date__
85
85
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tomwer
3
- Version: 1.3.0a6
3
+ Version: 1.3.0a7
4
4
  Summary: "tomography workflow tools"
5
5
  Home-page: https://gitlab.esrf.fr/tomotools/tomwer
6
6
  Author: data analysis unit
@@ -1,4 +1,4 @@
1
- tomwer-1.3.0a6-py3.11-nspkg.pth,sha256=xeeGR3TjdoVxdFeF6T-zSwZWh6Et--EYuPWu67LxL_c,574
1
+ tomwer-1.3.0a7-py3.11-nspkg.pth,sha256=xeeGR3TjdoVxdFeF6T-zSwZWh6Et--EYuPWu67LxL_c,574
2
2
  orangecontrib/tomwer/__init__.py,sha256=B4DXy1gY_wXmNYa2aOfapmJb2mEuCAjoaNEGnpBs70g,148
3
3
  orangecontrib/tomwer/state_summary.py,sha256=5_dPzweL3r0ye4ZfJo6IV2ThJI8fQhWoO2ySdJJajj8,1711
4
4
  orangecontrib/tomwer/orange/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -39,7 +39,7 @@ orangecontrib/tomwer/widgets/control/EDF2NXTomomillOW.py,sha256=BxtYgwWBUpXdZve-
39
39
  orangecontrib/tomwer/widgets/control/EmailOW.py,sha256=u23-BjMs7YX9wC2K_7XowbVNh8rDjQ5X6UaojKLOTOw,2493
40
40
  orangecontrib/tomwer/widgets/control/FilterOW.py,sha256=52t0D0NeLscvFyTT4yA7gPSn4CkkpppQpSf4STDiwjs,4659
41
41
  orangecontrib/tomwer/widgets/control/NXTomomillMixIn.py,sha256=VbFm--V4k28Jx4XgLCpo-ZBM6iOVCw6l1moLLwgOYKM,3269
42
- orangecontrib/tomwer/widgets/control/NXTomomillOW.py,sha256=2I2uJRPzaP0rMBahFvYzpMebRX_e6BD3Qw-MSrtTIgU,13322
42
+ orangecontrib/tomwer/widgets/control/NXTomomillOW.py,sha256=Wp9JOpuI4vC86EEfUa75DgYB1l3yJ5yzMkNa016XLOM,13499
43
43
  orangecontrib/tomwer/widgets/control/NXtomoConcatenate.py,sha256=8tm1MXr6ufyVAJayR2yYPu7nG2Vep4yRrb4H_DuKq8c,6155
44
44
  orangecontrib/tomwer/widgets/control/NotifierOW.py,sha256=2RSE30W2oYOERgFHbpW7EYMghSDRfn-mxgq6Q02Ngfo,4237
45
45
  orangecontrib/tomwer/widgets/control/ReduceDarkFlatSelectorOW.py,sha256=llc0e2Y8nMtXDQ56WXZoIdvjRwqcwU64yPVRnuyIOxY,2836
@@ -89,7 +89,7 @@ orangecontrib/tomwer/widgets/control/icons/volumeselector.png,sha256=BIjuKaxxFt3
89
89
  orangecontrib/tomwer/widgets/control/icons/volumeselector.svg,sha256=VWlAb73s-eZfF85-e9VjVf18LcYQjb1W7YWH9PPLE4M,10936
90
90
  orangecontrib/tomwer/widgets/control/icons/volumesymlink.png,sha256=Gf9qmYvxpnGMn4BbCCTwHPfME5yfhM6FlOc5l00CGus,1895
91
91
  orangecontrib/tomwer/widgets/control/icons/volumesymlink.svg,sha256=jVIt49I_7VeN9OQF1GeSujP_KwegQD4YFmIqOA-Jv9c,5786
92
- orangecontrib/tomwer/widgets/debugtools/DatasetGeneratorOW.py,sha256=s4853OIWf8-Unl3LZxyxt4cu8sv43Z-mKu-zvJgfS80,6373
92
+ orangecontrib/tomwer/widgets/debugtools/DatasetGeneratorOW.py,sha256=L04zRJVSqfesCce5lfDdQiGbioWfQK8gJN5DP7FThWc,6374
93
93
  orangecontrib/tomwer/widgets/debugtools/ObjectInspectorOW.py,sha256=oZKqVw4GXTWfnvx_zFHuoi6kbryvG9m8dDVDzSXap5U,2436
94
94
  orangecontrib/tomwer/widgets/debugtools/__init__.py,sha256=yYF1v2MWP4g1uXZOw3qPPvDnX8KKzauVTRit6fJ9MWM,1553
95
95
  orangecontrib/tomwer/widgets/debugtools/icons/hammer.png,sha256=5z_sXTWfAMCYhKbvLdiOmil8BpSxUICI_Y1BW9NL0Co,2034
@@ -224,7 +224,7 @@ orangecontrib/tomwer/widgets/visualization/icons/volumeviewer.svg,sha256=2uT9_px
224
224
  tomwer/__init__.py,sha256=82Jp1abyG4UWdGuT4nNU7LxaUV6xxkOte5pIz3w69Do,1745
225
225
  tomwer/__main__.py,sha256=65ohoCNpuwo7nvCGM5OeYazVDaD0LoAA3EoOzpoLyms,8878
226
226
  tomwer/utils.py,sha256=EgVwJ5CQVjoBvcKNwyVoXv_P4ciI11oxb8fNyy82Lck,8465
227
- tomwer/version.py,sha256=-kWl-UBDVIClDJKvrhUEtgBC20XKyXBkj7X7268j0fY,4386
227
+ tomwer/version.py,sha256=eEljpuzudz_6yjKiJ6Vpnql1KbLoK0Md31lJpEiItEU,4386
228
228
  tomwer/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
229
229
  tomwer/app/axis.py,sha256=UQNxYpHzxnGdNpkV6sJoO_0tPGCxJkylghwbA7ENsM0,5948
230
230
  tomwer/app/canvas.py,sha256=RbQqgE7DuNjv4nGG6BNfnSevQO5_lCl7N71hGcLoxwE,1561
@@ -317,7 +317,7 @@ tomwer/core/process/reconstruction/output.py,sha256=JxtQ-ky2rPjTet2kYtIlzqnfj9E7
317
317
  tomwer/core/process/reconstruction/paramsbase.py,sha256=YhCqZwZCM632WdLlLHJVEwBHnXwbBf7CoLA3jESxOFE,7725
318
318
  tomwer/core/process/reconstruction/axis/__init__.py,sha256=VSQkN6M6JvM_c55OiboNyJUW8Zs1wkkQgv1JYmzvIr8,80
319
319
  tomwer/core/process/reconstruction/axis/anglemode.py,sha256=sOkuTqO8sR8xd_tEwZHj-o1TA1z33AmwwZbrPnuYqmI,1896
320
- tomwer/core/process/reconstruction/axis/axis.py,sha256=-pyTrJTSwEAX_kHFj4e7NM2dFlna08Z-b6iamiQvtiY,35881
320
+ tomwer/core/process/reconstruction/axis/axis.py,sha256=2qLidyebR9RgpOjc4J57B4u7eOI3QLN-SDC3Xg1SKKI,35891
321
321
  tomwer/core/process/reconstruction/axis/mode.py,sha256=0FjJ00NE6-ySa1xWC0uCe2z0TsSyTndqZBw-qZBh_tU,3748
322
322
  tomwer/core/process/reconstruction/axis/params.py,sha256=Hiou-Vg1Pr8xm_4_IEJfNnBC6r2VV3eC5a-mZWkyirw,33180
323
323
  tomwer/core/process/reconstruction/axis/projectiontype.py,sha256=0w_NZ0N95iInHuEQCIxJIxt7K-YpCUo2fZ-_vhZ6D7Q,1543
@@ -353,7 +353,7 @@ tomwer/core/process/reconstruction/scores/scores.py,sha256=pb60Pt7p_8O9XZtcT0MH_
353
353
  tomwer/core/process/reconstruction/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
354
354
  tomwer/core/process/reconstruction/test/test_axis_params.py,sha256=DSZ73nr4vom12ZFwdqoYBMvCqTx9k1a0xEDq8NsEqzo,1614
355
355
  tomwer/core/process/reconstruction/test/test_darkref.py,sha256=4DGDRWlfDTf5UAjCw1emSEWEo_SaRySIcZdri1IJoRY,2429
356
- tomwer/core/process/reconstruction/test/test_darkref_copy.py,sha256=J5tMeylV49A8kZxwcdD5xb8YpKEYTbhMxGqBhxWeBLg,6086
356
+ tomwer/core/process/reconstruction/test/test_darkref_copy.py,sha256=Cl8qLAMZxLHDJp2oMDusr6q2WfALIg6mpbvuGyJJY7M,6090
357
357
  tomwer/core/process/reconstruction/test/test_paramsbase.py,sha256=n9x9BZV4I9uF7DM5QjCelfxaAzWQ6vx9N9BsjysW6RU,1505
358
358
  tomwer/core/process/reconstruction/test/test_saaxis.py,sha256=KkW918DeViK6F7Daf2uRJvjQ1PC5Iv40hbfGQi4qgs8,4295
359
359
  tomwer/core/process/reconstruction/test/test_sadeltabeta.py,sha256=TfxbxygZOhC471x79hsy6Dn1rM6zc9UoD8f2vJLJ_o4,2555
@@ -366,7 +366,7 @@ tomwer/core/process/stitching/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
366
366
  tomwer/core/process/stitching/metadataholder.py,sha256=8HbHrHVADc8XhLIDL3BSmT2Kh-iVGpZrvEclwQfKg7U,6527
367
367
  tomwer/core/process/stitching/nabustitcher.py,sha256=39dyKVvOtY1Cqo6O5w9FqVNB_OcZk60XUngh2M43sF8,6649
368
368
  tomwer/core/process/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
369
- tomwer/core/process/test/test_axis.py,sha256=Hq9o8JuC84xNkcXMVX91yEhzY24Fo6DlMXfP9MkIvx4,11747
369
+ tomwer/core/process/test/test_axis.py,sha256=0KB-lr2saOQ3Wx2RogbABJhNVN2jTuTMOwHlwZiHqmg,11748
370
370
  tomwer/core/process/test/test_conditions.py,sha256=7yKYB_Bg6dQqblA3lGD4eESegDX6MU2AzmUahWTzmdI,3464
371
371
  tomwer/core/process/test/test_dark_and_flat.py,sha256=XyfTtZAH-qleMUwVhaDkpbkxIeqWlgYXMeLVipc0spI,15444
372
372
  tomwer/core/process/test/test_data_listener.py,sha256=ab_FZM7f-lXzQ6eMY-4aCFyTUqWuexZKV_tiRaPVfzE,3696
@@ -374,7 +374,7 @@ tomwer/core/process/test/test_data_transfer.py,sha256=I0H4VmSkEeXUCPbWIJXF8bR6xt
374
374
  tomwer/core/process/test/test_data_watcher.py,sha256=y0FpUqxlpKZu7OhuwlxeLPX5ESPXj_2m2lKjEWrVCV4,3138
375
375
  tomwer/core/process/test/test_lamino.py,sha256=MPMzmXbrqRX2hbt-RT3XM6qpCU7s4E0mAYK7GdroWfM,3009
376
376
  tomwer/core/process/test/test_nabu.py,sha256=fSN584yaELs9gur4ywoclkUjy1EJlnSKYTvsQCv2n2Y,19342
377
- tomwer/core/process/test/test_normalization.py,sha256=5LH0oZ-LEJn2taVh4RhNNe9nYd4jqSHCjEpbXFljXfc,4012
377
+ tomwer/core/process/test/test_normalization.py,sha256=m9hSFi88Q2IGiyNb9emGsS5HOBx9HulJsejUjO0x5Mo,4014
378
378
  tomwer/core/process/test/test_timer.py,sha256=T25A7c81696c7D_sZiAy59b9RX-F6MdvUy-_st-qLVQ,3027
379
379
  tomwer/core/process/visualization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
380
380
  tomwer/core/process/visualization/dataviewer.py,sha256=rv1Qyv0AnSpQxF82CcKFMmlvTb-GCkEoeAPthl4AUnU,1656
@@ -398,14 +398,14 @@ tomwer/core/scan/scanfactory.py,sha256=Ltisxo9B8j11lS_cdwUjuEH1ZjPb9nmU2KmkXxzU9
398
398
  tomwer/core/scan/scantype.py,sha256=pQjWuCy_014uK5cdb8pFAkE_EPHJvPdSo3NM8aWTo58,137
399
399
  tomwer/core/scan/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
400
400
  tomwer/core/scan/test/test_edf.py,sha256=LS_RBc2OSOEQ9oGAIoa0Pe4Y2T7I5fci-xK6G0MlXSI,2212
401
- tomwer/core/scan/test/test_future_scan.py,sha256=_dSXXWntLHp82V5FewGGYt9o_YuoPz4cgbFCrCaItYk,2170
402
- tomwer/core/scan/test/test_h5.py,sha256=yHFCbZ0h0prZ-jyAmWCUdrNI9XzBXrKVBySvLGwz5_Q,3642
401
+ tomwer/core/scan/test/test_future_scan.py,sha256=RRsDmQq6Wu7sz0akhYvno3eN5a4JfPhTPfqHAArql2c,2171
402
+ tomwer/core/scan/test/test_h5.py,sha256=7fHLPi-VWD-z4j5E5CAg_ttRyc8nfPX-re4tDoKstug,3646
403
403
  tomwer/core/scan/test/test_process_registration.py,sha256=liMmQt4A0pwH6DK5g5YaF0QL8UVYr6odJbENicQpBZc,3893
404
404
  tomwer/core/scan/test/test_scan.py,sha256=LuWVPBOWesNigZU6ByL1Mh6i4opcgILK9rQZaQOEujg,14953
405
405
  tomwer/core/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
406
406
  tomwer/core/test/test_lamino.py,sha256=OHgsXiTVa-DEPareAlNCdO4wtW7W8p5uQp-eQKxNYUI,3542
407
407
  tomwer/core/test/test_scanutils.py,sha256=zE25HhIYjueiZMsedLKRL3UNvwHsbEe3FKaL0qakUf0,2197
408
- tomwer/core/test/test_utils.py,sha256=v2THWxrknE69eA5gxGwQkE6XYj_43IVUhhc75L_j0j0,10666
408
+ tomwer/core/test/test_utils.py,sha256=TMiiRccktaZFGHMACzu28u1eki4jvJTFHCAnOJBF4Pc,10668
409
409
  tomwer/core/utils/Singleton.py,sha256=57g7-B2eqyrneT8DQ2Tzqha0bg-mcdSdaPtOjhsGWVc,1559
410
410
  tomwer/core/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
411
411
  tomwer/core/utils/char.py,sha256=dZYzeEcQyz7efweq4HrkS23klr12Kno2psAqOdTxi78,1718
@@ -449,7 +449,7 @@ tomwer/gui/cluster/slurm.py,sha256=cpddc3oPikjnxNm9pw2kijRJGRXytUuN8QYb8MoqUlc,2
449
449
  tomwer/gui/cluster/supervisor.py,sha256=T6S57fC03bXN55JYh-T_t4v7IZXMR_G8gH_47tDIo_w,16598
450
450
  tomwer/gui/cluster/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
451
451
  tomwer/gui/cluster/test/test_cluster.py,sha256=J4jNuPAHJJ5eVndSqUQE4l9X8LOdf_UcvzypVuK0oKo,4009
452
- tomwer/gui/cluster/test/test_supervisor.py,sha256=vhR4o7WH-Ca_-I90qPbpdIfHRgiC6pOyq8sVFpg5BQU,3211
452
+ tomwer/gui/cluster/test/test_supervisor.py,sha256=0y24z3sAmc4_WMi-30XZGHgnM7ZqWoXRbu4KlTcZfQw,3212
453
453
  tomwer/gui/conditions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
454
454
  tomwer/gui/conditions/filter.py,sha256=8oKv3zCTzdwjqSjiplXkKkRRKn70vpfgpZRWMwIJ19Q,5549
455
455
  tomwer/gui/configuration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -493,7 +493,7 @@ tomwer/gui/control/test/test_process_manager.py,sha256=03MugLzlvwmVYHRx8pYmrS9lh
493
493
  tomwer/gui/control/test/test_reducedarkflat_selector.py,sha256=ir0vVN0BYElyv4J7bVB_KhdhPf_niL4WuHcLwqy5f_w,9430
494
494
  tomwer/gui/control/test/test_scanselector.py,sha256=-W3vji6B7-GKuR56LSHukc1viZOQzwdyKOEBVGfPn_w,2581
495
495
  tomwer/gui/control/test/test_scanvalidator.py,sha256=QKUsZccO8Dz26WVyRzHJXjVPXJ2jJ3d9TkSrFG9yTcE,3904
496
- tomwer/gui/control/test/test_single_tomo_obj.py,sha256=LJP5bRCGlYx0WTvuSkcuqQZdVnuZOKxItPjeGVLelBg,2277
496
+ tomwer/gui/control/test/test_single_tomo_obj.py,sha256=wGOkThfP_gpVTbZ6FOgN23UJoXRDiymOOTJmUBD415Q,2278
497
497
  tomwer/gui/control/test/test_volume_dialog.py,sha256=i_hFbDdGAomPT3WEiZryCTjXQUie6ZZGNTH9d2eWLII,8164
498
498
  tomwer/gui/control/test/test_volumeselector.py,sha256=DEqsRK4k3s1SPUKVYxwL8Si9yZF80YO8pSkDU83Vlec,3407
499
499
  tomwer/gui/debugtools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -505,7 +505,7 @@ tomwer/gui/edit/imagekeyeditor.py,sha256=PQYEqeIJqnUS9djwhN9VnOBvV5Z2evLJbGoysAV
505
505
  tomwer/gui/edit/nxtomoeditor.py,sha256=1mV5EIHTclg1YxDLMncbErNwC58jEOGxjxO7I1dRzyQ,28095
506
506
  tomwer/gui/edit/nxtomowarmer.py,sha256=isRcDXice4DgpsmdWfSZfmiD63X47B9FrI1J8kTTaxc,2346
507
507
  tomwer/gui/edit/test/__init__.py,sha256=OLK9ip_LryBfM_L40MReqjvJS3wdbWP_CpnBeD1NQTA,1368
508
- tomwer/gui/edit/test/test_dkrf_patch.py,sha256=Ec00pe_u-wS3TW-4LlpyB9S8X0wYTkDYgfq9yVkHSnU,7995
508
+ tomwer/gui/edit/test/test_dkrf_patch.py,sha256=578ZPdVGOHls236XQqId7QqRrpdN5h3Hh8BePTlV03g,8001
509
509
  tomwer/gui/edit/test/test_image_key_editor.py,sha256=hkeiB5plRR17YD499j6_yQatuIgKLa4F4NfjWVMzhY4,5965
510
510
  tomwer/gui/edit/test/test_nx_editor.py,sha256=iz6dcebE-IBOjdlzYIkDreRzpVJbkElEzTKvWqIJrkA,11285
511
511
  tomwer/gui/icat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -590,7 +590,7 @@ tomwer/gui/utils/buttons.py,sha256=6A8b5QtEQ9BJs3W7RVsyYOwrcLOt1YBWB9-AyA1i0zM,6
590
590
  tomwer/gui/utils/completer.py,sha256=fdqZYxlXPYuIfL1zp3_8cePAnHHbswaI5HO2OiVsVxE,4979
591
591
  tomwer/gui/utils/flow.py,sha256=sC0jAPi9LA7jNltat4xKgRFf6DFOwL9p4osF0bVrSX4,12091
592
592
  tomwer/gui/utils/illustrations.py,sha256=s4M1Y72sL6RhUPefAzJgffZihdxaQ_O6MznouvO-N70,4449
593
- tomwer/gui/utils/inputwidget.py,sha256=3VrwA7SlLGwxylILKfjHf6ahP2plP6pXUaq7hDA-FKI,23995
593
+ tomwer/gui/utils/inputwidget.py,sha256=ldsS5RL6mzMW-B3gjG1osp4OdGr3XYMtFeXbNywyR78,23995
594
594
  tomwer/gui/utils/qt_utils.py,sha256=vIBwiYeHhb55P-3HuGlHKL8s4o8AByyXQTl0Qi5-3CY,210
595
595
  tomwer/gui/utils/sandboxes.py,sha256=KsWDEZuz7nwUx8ZZUmKTzljIyErzcWEP6tVokFhFHSQ,7460
596
596
  tomwer/gui/utils/scandescription.py,sha256=4kAyYfqT5MP6-fkAW8S60gJ-DrLFETbs1k8xJLyeVbw,3373
@@ -816,10 +816,10 @@ tomwer/tests/test_utils.py,sha256=D0rNDSK6csEOYBY_7gD-4A3jp8rYAm8L1_Xg34A9I2s,30
816
816
  tomwer/tests/utils.py,sha256=RAXx5A99WD4Vyuv_wjHBdr-Xu7UiThHRKw2eiB5GX10,107
817
817
  tomwer/third_part/WaitingOverlay.py,sha256=GnqiytcJDp_24Cmz_2nZAP5HfpL3Yh7AzR2ATIusGsg,3906
818
818
  tomwer/third_part/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
819
- tomwer-1.3.0a6.dist-info/LICENSE,sha256=yR_hIZ1MfDh9x2_s23uFqBH7m5DgrBl9nJKkE37YChM,1877
820
- tomwer-1.3.0a6.dist-info/METADATA,sha256=hLpVoLn8zOdUnSjKamJJkLZY_eocjY9BIjXrGScdLI0,11426
821
- tomwer-1.3.0a6.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
822
- tomwer-1.3.0a6.dist-info/entry_points.txt,sha256=fIcDnCxjgwzfIylLYhUsFyiNZjZMxsfRQBxi4f-cJg8,440
823
- tomwer-1.3.0a6.dist-info/namespace_packages.txt,sha256=Iut-JTfT11SZHHm77_ZeszD7pZDWXcTweCbvrJpqDyQ,14
824
- tomwer-1.3.0a6.dist-info/top_level.txt,sha256=Yz5zKh0FPiImtzHYcPuztG1AO8-6KEpUWgoChGbA0Ys,21
825
- tomwer-1.3.0a6.dist-info/RECORD,,
819
+ tomwer-1.3.0a7.dist-info/LICENSE,sha256=yR_hIZ1MfDh9x2_s23uFqBH7m5DgrBl9nJKkE37YChM,1877
820
+ tomwer-1.3.0a7.dist-info/METADATA,sha256=eITpKrDbc6bxdtuAlfwsnMQ13H91DFhG02Pv7XZms0A,11426
821
+ tomwer-1.3.0a7.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
822
+ tomwer-1.3.0a7.dist-info/entry_points.txt,sha256=fIcDnCxjgwzfIylLYhUsFyiNZjZMxsfRQBxi4f-cJg8,440
823
+ tomwer-1.3.0a7.dist-info/namespace_packages.txt,sha256=Iut-JTfT11SZHHm77_ZeszD7pZDWXcTweCbvrJpqDyQ,14
824
+ tomwer-1.3.0a7.dist-info/top_level.txt,sha256=Yz5zKh0FPiImtzHYcPuztG1AO8-6KEpUWgoChGbA0Ys,21
825
+ tomwer-1.3.0a7.dist-info/RECORD,,