tomwer 1.4.0rc1__py3-none-any.whl → 1.4.0rc2__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.
@@ -18,6 +18,7 @@ from tomoscan.esrf.identifier.hdf5Identifier import (
18
18
  )
19
19
  from tomoscan.esrf.identifier.url_utils import UrlSettings, split_path, split_query
20
20
  from tomoscan.esrf.scan.nxtomoscan import NXtomoScan as _tsNXtomoScan
21
+ from tomoscan.utils.io import filter_esrf_mounting_points
21
22
  from nxtomo.nxobject.nxdetector import ImageKey
22
23
  from nxtomo.paths.nxtomo import get_paths as _get_nexus_paths
23
24
 
@@ -487,6 +488,7 @@ class NXtomoScan(_tsNXtomoScan, TomwerScanBase):
487
488
  bliss_raw_data_files[0] if len(bliss_raw_data_files) > 0 else None
488
489
  )
489
490
  if bliss_raw_data_file is not None:
491
+ bliss_raw_data_file = filter_esrf_mounting_points(bliss_raw_data_file)
490
492
  strips = bliss_raw_data_file.lstrip("/").split("/")
491
493
  if len(strips) > 2 and bliss_raw_data_file.startswith(
492
494
  ("/data/visitor", "/data/visitor")
@@ -124,9 +124,8 @@ class EstimatedCORWidget(qt.QGroupBox):
124
124
 
125
125
  """
126
126
  mode = axis_mode.AxisMode.from_value(mode)
127
- self._estimatedCORQCB.setSidesVisible(
128
- axis_mode.AXIS_MODE_METADATAS[mode].valid_sides
129
- )
127
+ valid_sides = axis_mode.AXIS_MODE_METADATAS[mode].valid_sides
128
+ self._estimatedCORQCB.setSidesVisible(valid_sides)
130
129
  first_guess_available = axis_mode.AXIS_MODE_METADATAS[
131
130
  mode
132
131
  ].allows_estimated_cor_as_numerical_value
@@ -135,9 +134,10 @@ class EstimatedCORWidget(qt.QGroupBox):
135
134
  if first_guess_available:
136
135
  # if the first guess is valid, when the sides visibility is modify we want to activate it.
137
136
  self._estimatedCORQCB.selectFirstGuess()
138
- elif not isinstance(self._estimatedCORQCB.getCurrentCorValue(), Side):
139
- # else if the current side cannot be re-used, pick the next one available
140
- if axis_mode.AXIS_MODE_METADATAS[mode].valid_sides:
137
+ elif valid_sides:
138
+ # Proceed only if there are valid sides
139
+ current_side = self._estimatedCORQCB.getCurrentCorValue()
140
+ if not isinstance(current_side, Side) or current_side not in valid_sides:
141
141
  with block_signals(self._estimatedCORQCB):
142
142
  cor_guess = self._estimatedCORQCB.getCurrentCorValue()
143
143
  if cor_guess is not None and self._imageWidth is not None:
@@ -150,18 +150,29 @@ class EstimatedCORWidget(qt.QGroupBox):
150
150
  2 * self._imageWidth / 3 - self._imageWidth / 2
151
151
  )
152
152
 
153
- if left_boundary <= cor_guess < middle_left_boundary:
153
+ if (
154
+ Side.LEFT in valid_sides
155
+ and left_boundary <= cor_guess < middle_left_boundary
156
+ ):
154
157
  new_side = Side.LEFT
155
- elif middle_left_boundary <= cor_guess < middle_right_boundary:
158
+ elif (
159
+ Side.CENTER in valid_sides
160
+ and middle_left_boundary
161
+ <= cor_guess
162
+ < middle_right_boundary
163
+ ):
156
164
  new_side = Side.CENTER
157
- elif middle_right_boundary <= cor_guess <= right_boundary:
165
+ elif (
166
+ Side.RIGHT in valid_sides
167
+ and middle_right_boundary <= cor_guess <= right_boundary
168
+ ):
158
169
  new_side = Side.RIGHT
159
170
  else:
160
- new_side = axis_mode.AXIS_MODE_METADATAS[mode].valid_sides[
161
- 0
162
- ] # Handle out-of-bound cases if needed
171
+ # Fallback to the first available valid side
172
+ new_side = valid_sides[0]
163
173
  else:
164
- new_side = axis_mode.AXIS_MODE_METADATAS[mode].valid_sides[0]
174
+ # If no guess or boundaries are available, fallback to the first valid side
175
+ new_side = valid_sides[0]
165
176
  self._estimatedCORQCB.setCurrentCorValue(new_side)
166
177
  self._axis_params.estimated_cor = new_side
167
178
 
tomwer/version.py CHANGED
@@ -79,7 +79,7 @@ MAJOR = 1
79
79
  MINOR = 4
80
80
  MICRO = 0
81
81
  RELEV = "rc" # <16
82
- SERIAL = 1 # <16
82
+ SERIAL = 2 # <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.4.0rc1
3
+ Version: 1.4.0rc2
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
@@ -220,7 +220,7 @@ orangecontrib/tomwer/widgets/visualization/tests/__init__.py,sha256=47DEQpj8HBSa
220
220
  tomwer/__init__.py,sha256=GeLSeY4__z-HQZu1y4ptZ5Y1OeXFvG8kuEwWXhkeaMA,360
221
221
  tomwer/__main__.py,sha256=7tCADiS4u7k1PCxFhlRAcYSIOpxQTGUTx8sCEQ-hi1E,8707
222
222
  tomwer/utils.py,sha256=7h7dEgKAEUmQ43jkULvC1B9Adl55nkCty-SEKUKCl4U,7008
223
- tomwer/version.py,sha256=j1oNp7eNg5mwm_5Q77iTFsL3OJijPmUGXya-gpg8TlM,4383
223
+ tomwer/version.py,sha256=Vs2f0crFymGdC8vYgisbt6gSSnsw9ui4Jb9RGNnGg2U,4383
224
224
  tomwer/app/__init__.py,sha256=RYMB2YhbQaoMXC8W-oOyfZ_Y1vmHD7L13YkKeAMuShM,85
225
225
  tomwer/app/axis.py,sha256=BJNuwMOjw1vS2w-9sKxltIgWMEWAPetnK2sAOFmXoZg,5880
226
226
  tomwer/app/canvas.py,sha256=sM368nniUwbQXLA-oNCg1iNwMMol_ZGTKbiw8WsC4yw,1539
@@ -406,7 +406,7 @@ tomwer/core/scan/edfscan.py,sha256=hsFzpYyPIrvsLM61J9aDmpdVskMTFO94fNcF3HEG_iI,2
406
406
  tomwer/core/scan/futurescan.py,sha256=chXjteQ4_6cSyFBoCil-DeHkHGGzM-xb21xJRYLEfhI,213
407
407
  tomwer/core/scan/hdf5scan.py,sha256=rQ-WtbOIgNtnMxA2kC23fEAcJIJIKboAv7UQColkrBg,966
408
408
  tomwer/core/scan/helicalmetadata.py,sha256=JRBxqHkyTe5f3FDlbIeDfN31P6Ms48SqGiFRXHuZ8sw,472
409
- tomwer/core/scan/nxtomoscan.py,sha256=iw6RneKKXZ5u6whN_yghYMoR4fisvYMpJTVMoarxYIE,18768
409
+ tomwer/core/scan/nxtomoscan.py,sha256=H-qSuRiO8orBV5EJBkg5uhUDAJOG2oF1nj5o13MO1xw,18913
410
410
  tomwer/core/scan/scanbase.py,sha256=TMfoQHJgaWTNJfjXiOVYDLT58A03T-O-8MDOM6bwt3E,28514
411
411
  tomwer/core/scan/scanfactory.py,sha256=-bF0Ru9bn8bnGk4MKXhbt5Oli19qN1WvFPDMtqw81BA,9116
412
412
  tomwer/core/scan/scantype.py,sha256=pQjWuCy_014uK5cdb8pFAkE_EPHJvPdSo3NM8aWTo58,137
@@ -547,7 +547,7 @@ tomwer/gui/reconstruction/axis/AxisWidget.py,sha256=nkORZHLo8D3Sk8j-8QVr9l3Qse66
547
547
  tomwer/gui/reconstruction/axis/CalculationWidget.py,sha256=F8z4V5xhoWVQ5sQPVwUv3fsTxIPu4vhlReBTgnnCG0g,8476
548
548
  tomwer/gui/reconstruction/axis/CompareImages.py,sha256=jqzlMBU_tfIdR1yHuZa8Avt8Te0EPBkjI6R4TY6kIlw,11425
549
549
  tomwer/gui/reconstruction/axis/ControlWidget.py,sha256=DsBPFIEZCva-JPUFxORjkAnoYfgb5udfJ71W-fCwgRY,10686
550
- tomwer/gui/reconstruction/axis/EstimatedCORWidget.py,sha256=tcmedDyeJLl557ytCV5KS_RI6tMimYJmhN3QmWnsPAI,16666
550
+ tomwer/gui/reconstruction/axis/EstimatedCORWidget.py,sha256=dL9SCjPEZ7MQLGZP0gZARb-rxD8YYSl-gcFyuN14jwg,17081
551
551
  tomwer/gui/reconstruction/axis/EstimatedCorComboBox.py,sha256=Hq8o6X5-iVMqltGcpy2E5OpCP5nNV353Mepsf_R7zVY,4434
552
552
  tomwer/gui/reconstruction/axis/InputWidget.py,sha256=UhEWL3aJG56PfkI7DKw-sBd6hDsRJ2NnQ0XN0nBmM6g,13052
553
553
  tomwer/gui/reconstruction/axis/ManualFramesSelection.py,sha256=b7-OjYyLuMQxG19AuvUNdwhSV5ewwfC4s9Yn8-6yZLQ,6481
@@ -904,9 +904,9 @@ tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_volume_viewer
904
904
  tomwer/tests/test_ewoks/test_conversion.py,sha256=a8cEWbErXiFCAkaapi0jeEoRKYxcFQCoa-Jr_u77_OM,3656
905
905
  tomwer/tests/test_ewoks/test_single_node_execution.py,sha256=YBUHfiAnkciv_kjj7biC5fOs7c7ofNImM_azGMn4LZM,2813
906
906
  tomwer/tests/test_ewoks/test_workflows.py,sha256=L0vNnfGpI6Soy8b_w6OjTMhLzUSutMFhWjPOe6kZO-E,5081
907
- tomwer-1.4.0rc1.dist-info/LICENSE,sha256=62p1wL0n9WMTu8x2YDv0odYgTqeSvTd9mQ0v6Mq7lzE,1876
908
- tomwer-1.4.0rc1.dist-info/METADATA,sha256=3QcO1MU_iJulld_cCeDiJAK0U4NWTU7tFLBqcRDD4_k,13406
909
- tomwer-1.4.0rc1.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
910
- tomwer-1.4.0rc1.dist-info/entry_points.txt,sha256=py3ZUWvGnWGc5c7Yhw_uBTm8Fmew0BDw3aQZnWMBNZI,500
911
- tomwer-1.4.0rc1.dist-info/top_level.txt,sha256=Yz5zKh0FPiImtzHYcPuztG1AO8-6KEpUWgoChGbA0Ys,21
912
- tomwer-1.4.0rc1.dist-info/RECORD,,
907
+ tomwer-1.4.0rc2.dist-info/LICENSE,sha256=62p1wL0n9WMTu8x2YDv0odYgTqeSvTd9mQ0v6Mq7lzE,1876
908
+ tomwer-1.4.0rc2.dist-info/METADATA,sha256=XrRzqu2ANWCR-0X9IFhU4OHEsTWf1L6gKTCLK7oiL5g,13406
909
+ tomwer-1.4.0rc2.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
910
+ tomwer-1.4.0rc2.dist-info/entry_points.txt,sha256=py3ZUWvGnWGc5c7Yhw_uBTm8Fmew0BDw3aQZnWMBNZI,500
911
+ tomwer-1.4.0rc2.dist-info/top_level.txt,sha256=Yz5zKh0FPiImtzHYcPuztG1AO8-6KEpUWgoChGbA0Ys,21
912
+ tomwer-1.4.0rc2.dist-info/RECORD,,