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
bd36377f
Commit
bd36377f
authored
9 years ago
by
Matt King
Browse files
Options
Downloads
Patches
Plain Diff
getInstrument will return a const pointer now
Refs #13758
parent
8d0d83cb
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
MantidQt/MantidWidgets/inc/MantidQtMantidWidgets/SlitCalculator.h
+2
-2
2 additions, 2 deletions
.../MantidWidgets/inc/MantidQtMantidWidgets/SlitCalculator.h
MantidQt/MantidWidgets/src/SlitCalculator.cpp
+3
-3
3 additions, 3 deletions
MantidQt/MantidWidgets/src/SlitCalculator.cpp
with
5 additions
and
5 deletions
MantidQt/MantidWidgets/inc/MantidQtMantidWidgets/SlitCalculator.h
+
2
−
2
View file @
bd36377f
...
...
@@ -41,7 +41,7 @@ public:
SlitCalculator
(
QWidget
*
parent
);
virtual
~
SlitCalculator
();
void
setInstrument
(
std
::
string
instrumentName
);
Mantid
::
Geometry
::
Instrument_sptr
getInstrument
();
Mantid
::
Geometry
::
Instrument_
const_
sptr
getInstrument
();
void
setCurrentInstrumentName
(
std
::
string
instrumentName
);
std
::
string
getCurrentInstrumentName
();
void
processInstrumentHasBeenChanged
();
...
...
@@ -50,7 +50,7 @@ protected:
Ui
::
SlitCalculator
ui
;
private:
Mantid
::
Geometry
::
Instrument_sptr
instrument
;
Mantid
::
Geometry
::
Instrument_
const_
sptr
instrument
;
std
::
string
currentInstrumentName
;
void
setupSlitCalculatorWithInstrumentValues
(
Mantid
::
Geometry
::
Instrument_const_sptr
);
...
...
This diff is collapsed.
Click to expand it.
MantidQt/MantidWidgets/src/SlitCalculator.cpp
+
3
−
3
View file @
bd36377f
...
...
@@ -60,14 +60,14 @@ void SlitCalculator::setupSlitCalculatorWithInstrumentValues(
const
double
s2sa
=
1e3
*
slit2Component
->
getDistance
(
*
sampleComponent
);
ui
.
spinSlit2Sample
->
setValue
(
s2sa
);
}
Mantid
::
Geometry
::
Instrument_sptr
SlitCalculator
::
getInstrument
()
{
return
this
->
instrument
;
Mantid
::
Geometry
::
Instrument_
const_
sptr
SlitCalculator
::
getInstrument
()
{
return
instrument
;
}
void
SlitCalculator
::
setCurrentInstrumentName
(
std
::
string
instrumentName
)
{
this
->
currentInstrumentName
=
instrumentName
;
}
std
::
string
SlitCalculator
::
getCurrentInstrumentName
()
{
return
this
->
currentInstrumentName
;
return
currentInstrumentName
;
}
void
SlitCalculator
::
on_recalculate_triggered
()
{
const
auto
currentInstrument
=
getInstrument
();
...
...
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