Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
mantidproject
mantid
Commits
192d08a3
Commit
192d08a3
authored
Feb 03, 2020
by
RichardWaiteSTFC
Browse files
Fix incorrect sign when q convention is crystallography
parent
a8216b4d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Framework/Crystal/src/PredictSatellitePeaks.cpp
View file @
192d08a3
...
...
@@ -432,7 +432,7 @@ void PredictSatellitePeaks::predictOffsetsWithCrossTerms(
goniometer
*
UB
*
satelliteHKL
*
2.0
*
M_PI
*
m_qConventionFactor
;
// Check if Q is non-physical
if
(
Qs
.
Z
()
<=
0
)
if
(
Qs
.
Z
()
*
m_qConventionFactor
<=
0
)
continue
;
auto
peak
(
Peaks
->
createPeak
(
Qs
,
1
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment