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
5de8e0d4
Commit
5de8e0d4
authored
9 years ago
by
Raquel Alvarez Banos
Browse files
Options
Downloads
Patches
Plain Diff
Re #11711 Store fitting results in m_data in the PeakFitting step
parent
f800b2b8
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Code/Mantid/MantidQt/CustomInterfaces/src/Muon/ALCPeakFittingModel.cpp
+3
-30
3 additions, 30 deletions
...antidQt/CustomInterfaces/src/Muon/ALCPeakFittingModel.cpp
with
3 additions
and
30 deletions
Code/Mantid/MantidQt/CustomInterfaces/src/Muon/ALCPeakFittingModel.cpp
+
3
−
30
View file @
5de8e0d4
...
...
@@ -19,37 +19,9 @@ namespace CustomInterfaces
MatrixWorkspace_sptr
ALCPeakFittingModel
::
exportWorkspace
()
{
if
(
m_data
&&
m_fittedPeaks
)
{
if
(
m_data
->
getNumberHistograms
()
==
3
)
{
// Create a new workspace by cloning data one
IAlgorithm_sptr
clone
=
AlgorithmManager
::
Instance
().
create
(
"CloneWorkspace"
);
clone
->
setChild
(
true
);
// Don't want workspaces in ADS
clone
->
setProperty
(
"InputWorkspace"
,
boost
::
const_pointer_cast
<
MatrixWorkspace
>
(
m_data
));
clone
->
setProperty
(
"OutputWorkspace"
,
"__NotUsed"
);
clone
->
execute
();
Workspace_sptr
cloneResult
=
clone
->
getProperty
(
"OutputWorkspace"
);
// Calculate function values for all data X values
MatrixWorkspace_sptr
peaks
=
ALCHelper
::
createWsFromFunction
(
m_fittedPeaks
,
m_data
->
readX
(
0
));
// Merge two workspaces
IAlgorithm_sptr
join
=
AlgorithmManager
::
Instance
().
create
(
"ConjoinWorkspaces"
);
join
->
setChild
(
true
);
join
->
setProperty
(
"InputWorkspace1"
,
cloneResult
);
join
->
setProperty
(
"InputWorkspace2"
,
peaks
);
join
->
setProperty
(
"CheckOverlapping"
,
false
);
join
->
execute
();
MatrixWorkspace_sptr
result
=
join
->
getProperty
(
"InputWorkspace1"
);
// Update axis lables so that it's understandable what's what on workspace data view / plot
TextAxis
*
yAxis
=
new
TextAxis
(
result
->
getNumberHistograms
());
yAxis
->
setLabel
(
0
,
"Data"
);
yAxis
->
setLabel
(
1
,
"FittedPeaks"
);
result
->
replaceAxis
(
1
,
yAxis
);
return
result
;
return
boost
::
const_pointer_cast
<
MatrixWorkspace
>
(
m_data
);
}
else
{
...
...
@@ -84,6 +56,7 @@ namespace CustomInterfaces
fit
->
setProperty
(
"CreateOutput"
,
true
);
fit
->
execute
();
m_data
=
fit
->
getProperty
(
"OutputWorkspace"
);
m_parameterTable
=
fit
->
getProperty
(
"OutputParameters"
);
setFittedPeaks
(
static_cast
<
IFunction_sptr
>
(
fit
->
getProperty
(
"Function"
)));
...
...
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