Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
tomotools
tomwer
Commits
5a6730a2
Commit
5a6730a2
authored
May 05, 2022
by
Henri Payno
Browse files
Merge branch '0.9' of gitlab.esrf.fr:tomotools/tomwer into 0.9
parents
43304d74
882391c8
Changes
5
Hide whitespace changes
Inline
Side-by-side
orangecontrib/tomwer/widgets/reconstruction/AxisOW.py
View file @
5a6730a2
...
...
@@ -506,9 +506,9 @@ class AxisOW(SuperviseOW, WidgetLongProcessing):
if
scan
is
not
None
:
# for now The behavior for reprocessing is the sama as for processing
if
hasattr
(
scan
,
"instance"
):
self
.
process
(
scan
=
scan
.
instance
)
self
.
process
(
scan
.
instance
)
else
:
self
.
process
(
scan
=
scan
)
self
.
process
(
scan
)
def
close
(
self
):
self
.
_processingStack
.
stop
()
...
...
orangecontrib/tomwer/widgets/reconstruction/NabuOW.py
View file @
5a6730a2
...
...
@@ -234,9 +234,9 @@ class NabuOW(WidgetLongProcessing, SuperviseOW):
if
self
.
exec_
():
# for now The behavior for reprocessing is the sama as for processing
if
hasattr
(
scan
,
"instance"
):
self
.
process
(
scan
=
scan
.
instance
)
self
.
process
(
scan
.
instance
)
else
:
self
.
process
(
scan
=
scan
)
self
.
process
(
scan
)
@
Inputs
.
cluster_in
def
setCluster
(
self
,
slurm_cluster
:
Optional
[
SlurmClusterConfiguration
]):
...
...
orangecontrib/tomwer/widgets/reconstruction/SAAxisOW.py
View file @
5a6730a2
...
...
@@ -444,7 +444,7 @@ class SAAxisOW(SuperviseOW, WidgetLongProcessing):
@
Inputs
.
data_recompute
def
reprocess
(
self
,
dataset
):
self
.
lockAutofocus
(
False
)
self
.
process
(
scan
=
dataset
)
self
.
process
(
dataset
)
def
validateCurrentScan
(
self
):
self
.
_widget
.
validateCurrentScan
()
...
...
orangecontrib/tomwer/widgets/reconstruction/SADeltaBetaOW.py
View file @
5a6730a2
...
...
@@ -366,7 +366,7 @@ class SADeltaBetaOW(SuperviseOW, WidgetLongProcessing):
@
Inputs
.
data_recompute
def
reprocess
(
self
,
dataset
):
self
.
lockAutofocus
(
False
)
self
.
process
(
scan
=
dataset
)
self
.
process
(
dataset
)
@
Inputs
.
cluster_in
def
setCluster
(
self
,
cluster
):
...
...
tomwer/core/process/reconstruction/axis/axis.py
View file @
5a6730a2
...
...
@@ -635,7 +635,7 @@ class AxisProcess(
:param scan:
"""
return
self
.
process
(
scan
=
scan
)
return
self
.
process
(
scan
)
def
_process_end
(
self
,
scan
,
cor
,
error
=
None
):
assert
isinstance
(
scan
,
TomwerScanBase
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment