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
d7f4f5ad
Commit
d7f4f5ad
authored
9 years ago
by
Matt King
Browse files
Options
Downloads
Plain Diff
Merge pull request #14531 from mantidproject/14527_Indirect_Bayes_ResNorm_validation
parents
2c7f8cb1
617e7634
No related branches found
No related tags found
No related merge requests found
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
MantidQt/CustomInterfaces/src/Indirect/ResNorm.cpp
+29
-24
29 additions, 24 deletions
MantidQt/CustomInterfaces/src/Indirect/ResNorm.cpp
MantidQt/MantidWidgets/src/DataSelector.cpp
+408
-458
408 additions, 458 deletions
MantidQt/MantidWidgets/src/DataSelector.cpp
with
437 additions
and
482 deletions
MantidQt/CustomInterfaces/src/Indirect/ResNorm.cpp
+
29
−
24
View file @
d7f4f5ad
...
...
@@ -54,35 +54,40 @@ void ResNorm::setup() {}
bool
ResNorm
::
validate
()
{
UserInputValidator
uiv
;
// Check vanadium input is _red ws
QString
vanadiumName
=
m_uiForm
.
dsVanadium
->
getCurrentDataName
();
int
cutIndex
=
vanadiumName
.
lastIndexOf
(
"_"
);
QString
vanadiumSuffix
=
vanadiumName
.
right
(
vanadiumName
.
size
()
-
(
cutIndex
+
1
));
if
(
vanadiumSuffix
.
compare
(
"red"
)
!=
0
)
{
uiv
.
addErrorMessage
(
"The Vanadium run is not a reduction (_red) workspace"
);
}
// Check Res and Vanadium are the same Run
const
bool
vanValid
=
uiv
.
checkDataSelectorIsValid
(
"Vanadium"
,
m_uiForm
.
dsVanadium
);
const
bool
resValid
=
uiv
.
checkDataSelectorIsValid
(
"Resolution"
,
m_uiForm
.
dsResolution
);
if
(
vanValid
)
{
// Check vanadium input is _red ws
QString
vanadiumName
=
m_uiForm
.
dsVanadium
->
getCurrentDataName
();
int
cutIndex
=
vanadiumName
.
lastIndexOf
(
"_"
);
QString
vanadiumSuffix
=
vanadiumName
.
right
(
vanadiumName
.
size
()
-
(
cutIndex
+
1
));
if
(
vanadiumSuffix
.
compare
(
"red"
)
!=
0
)
{
uiv
.
addErrorMessage
(
"The Vanadium run is not a reduction (_red) workspace"
);
}
// Check that Res file is still in ADS if not, load it
auto
resolutionWs
=
AnalysisDataService
::
Instance
().
retrieveWS
<
MatrixWorkspace
>
(
m_uiForm
.
dsResolution
->
getCurrentDataName
().
toStdString
());
auto
vanadiumWs
=
AnalysisDataService
::
Instance
().
retrieveWS
<
MatrixWorkspace
>
(
vanadiumName
.
toStdString
());
// Check Res and Vanadium are the same Run
if
(
resValid
)
{
// Check that Res file is still in ADS if not, load it
auto
resolutionWs
=
AnalysisDataService
::
Instance
().
retrieveWS
<
MatrixWorkspace
>
(
m_uiForm
.
dsResolution
->
getCurrentDataName
().
toStdString
());
auto
vanadiumWs
=
AnalysisDataService
::
Instance
().
retrieveWS
<
MatrixWorkspace
>
(
vanadiumName
.
toStdString
());
const
int
resRun
=
resolutionWs
->
getRunNumber
();
const
int
vanRun
=
vanadiumWs
->
getRunNumber
();
const
int
resRun
=
resolutionWs
->
getRunNumber
();
const
int
vanRun
=
vanadiumWs
->
getRunNumber
();
if
(
resRun
!=
vanRun
)
{
uiv
.
addErrorMessage
(
"The provided Vanadium and Resolution do not have "
"matching run numbers"
);
if
(
resRun
!=
vanRun
)
{
uiv
.
addErrorMessage
(
"The provided Vanadium and Resolution do not have "
"matching run numbers"
);
}
}
}
uiv
.
checkDataSelectorIsValid
(
"Vanadium"
,
m_uiForm
.
dsVanadium
);
uiv
.
checkDataSelectorIsValid
(
"Resolution"
,
m_uiForm
.
dsResolution
);
QString
errors
=
uiv
.
generateErrorMessage
();
if
(
!
errors
.
isEmpty
())
{
emit
showMessageBox
(
errors
);
...
...
This diff is collapsed.
Click to expand it.
MantidQt/MantidWidgets/src/DataSelector.cpp
+
408
−
458
View file @
d7f4f5ad
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