Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
mantid
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mantidproject
mantid
Commits
aee52d83
Commit
aee52d83
authored
8 years ago
by
Peterson, Peter
Browse files
Options
Downloads
Patches
Plain Diff
Add progress bar support to specialized algorithms
Specifically: Load, CutMD, and RenameWorkspace
parent
8847fdbd
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Framework/PythonInterface/mantid/simpleapi.py
+24
-10
24 additions, 10 deletions
Framework/PythonInterface/mantid/simpleapi.py
with
24 additions
and
10 deletions
Framework/PythonInterface/mantid/simpleapi.py
+
24
−
10
View file @
aee52d83
...
...
@@ -47,6 +47,19 @@ def specialization_exists(name):
"""
return
name
in
__SPECIALIZED_FUNCTIONS__
def
extract_progress_kwargs
(
kwargs
):
"""
Returns tuple(startProgress, endProgress, kwargs) with the special
keywords removed from kwargs. If the progress keywords are not
specified, None will be returned in their place.
"""
start
=
kwargs
.
get
(
'
startProgress
'
)
end
=
kwargs
.
get
(
'
endProgress
'
)
for
item
in
(
'
startProgress
'
,
'
endProgress
'
):
if
item
in
kwargs
:
del
kwargs
[
item
]
return
(
start
,
end
,
kwargs
)
def
Load
(
*
args
,
**
kwargs
):
"""
Load is a more flexible algorithm than other Mantid algorithms.
...
...
@@ -85,7 +98,9 @@ def Load(*args, **kwargs):
filename
,
=
_get_mandatory_args
(
'
Load
'
,
[
"
Filename
"
],
*
args
,
**
kwargs
)
# Create and execute
algm
=
_create_algorithm_object
(
'
Load
'
)
(
_startProgress
,
_endProgress
,
kwargs
)
=
extract_progress_kwargs
(
kwargs
)
algm
=
_create_algorithm_object
(
'
Load
'
,
startProgress
=
_startProgress
,
endProgress
=
_endProgress
)
_set_logging_option
(
algm
,
kwargs
)
try
:
algm
.
setProperty
(
'
Filename
'
,
filename
)
# Must be set first
...
...
@@ -300,7 +315,10 @@ def FitDialog(*args, **kwargs):
if
'
Disable
'
not
in
arguments
:
arguments
[
'
Disable
'
]
=
''
if
'
Message
'
not
in
arguments
:
arguments
[
'
Message
'
]
=
''
algm
=
_create_algorithm_object
(
'
Fit
'
)
(
_startProgress
,
_endProgress
,
kwargs
)
=
extract_progress_kwargs
(
kwargs
)
algm
=
_create_algorithm_object
(
'
Fit
'
,
startProgress
=
_startProgress
,
endProgress
=
_endProgress
)
set_properties_dialog
(
algm
,
**
arguments
)
algm
.
execute
()
return
algm
...
...
@@ -360,7 +378,9 @@ def CutMD(*args, **kwargs):
kwargs
[
"
P{0}Bin
"
.
format
(
bin
+
1
)]
=
bins
[
bin
]
# Create and execute
algm
=
_create_algorithm_object
(
'
CutMD
'
)
(
_startProgress
,
_endProgress
,
kwargs
)
=
extract_progress_kwargs
(
kwargs
)
algm
=
_create_algorithm_object
(
'
CutMD
'
,
startProgress
=
_startProgress
,
endProgress
=
_endProgress
)
_set_logging_option
(
algm
,
kwargs
)
# Now check that all the kwargs we've got are correct
...
...
@@ -830,13 +850,7 @@ def _create_algorithm_function(algorithm, version, _algm_object):
_version
=
kwargs
[
"
Version
"
]
del
kwargs
[
"
Version
"
]
_startProgress
,
_endProgress
=
(
None
,
None
)
if
'
startProgress
'
in
kwargs
:
_startProgress
=
kwargs
[
'
startProgress
'
]
del
kwargs
[
'
startProgress
'
]
if
'
endProgress
'
in
kwargs
:
_endProgress
=
kwargs
[
'
endProgress
'
]
del
kwargs
[
'
endProgress
'
]
(
_startProgress
,
_endProgress
,
kwargs
)
=
extract_progress_kwargs
(
kwargs
)
algm
=
_create_algorithm_object
(
algorithm
,
_version
,
_startProgress
,
_endProgress
)
_set_logging_option
(
algm
,
kwargs
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment