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
c5f925f0
Commit
c5f925f0
authored
5 years ago
by
Conor Finn
Browse files
Options
Downloads
Patches
Plain Diff
RE #28102 Fix TOF plots not appearing when cropped
parent
7e8b4649
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
scripts/Engineering/gui/engineering_diffraction/tabs/calibration/model.py
+3
-3
3 additions, 3 deletions
...ing/gui/engineering_diffraction/tabs/calibration/model.py
with
3 additions
and
3 deletions
scripts/Engineering/gui/engineering_diffraction/tabs/calibration/model.py
+
3
−
3
View file @
c5f925f0
...
...
@@ -215,7 +215,7 @@ class CalibrationModel(object):
@staticmethod
def
_plot_tof_fit_single_bank_or_custom
(
bank
):
bank_ws
=
Ads
.
retrieve
(
"
engggui_
difc_zero
_peaks_bank_
"
+
str
(
bank
))
bank_ws
=
Ads
.
retrieve
(
"
engggui_
tof
_peaks_bank_
"
+
str
(
bank
))
ax
=
plot
([
bank_ws
],
[
0
],
plot_kwargs
=
{
...
...
@@ -224,8 +224,8 @@ class CalibrationModel(object):
"
markersize
"
:
"
3
"
}).
gca
()
ax
.
plot
(
bank_ws
,
wkspIndex
=
1
,
linestyle
=
"
--
"
,
marker
=
"
o
"
,
markersize
=
"
3
"
)
ax
.
set_title
(
"
Engg Gui
Difc Zero
Peaks Bank
"
+
str
(
bank
))
ax
.
legend
((
"
Peaks Fitted
"
,
"
DifC/TZero Fitted Straight Line
"
))
ax
.
set_title
(
"
Engg Gui
TOF
Peaks Bank
"
+
str
(
bank
))
ax
.
legend
((
"
Peaks Fitted
"
,
"
TOF Quadratic Fit
"
))
ax
.
set_xlabel
(
"
Expected Peaks Centre(dSpacing, A)
"
)
def
run_calibration
(
self
,
...
...
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