Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Corryvreckan
Corryvreckan
Commits
c8df66f9
Commit
c8df66f9
authored
Jun 17, 2021
by
Jens Kroeger
Browse files
AnalysisEfficiency: fix type -> x/y
parent
8b24293a
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/modules/AnalysisEfficiency/AnalysisEfficiency.cpp
View file @
c8df66f9
...
...
@@ -371,7 +371,7 @@ StatusCode AnalysisEfficiency::run(const std::shared_ptr<Clipboard>& clipboard)
auto
xmod
=
inpixel
.
X
();
auto
ymod
=
inpixel
.
Y
();
auto
xmod_um
=
xmod
*
1000.
;
// mm->um (for plotting)
auto
ymod_um
=
x
mod
*
1000.
;
// mm->um (for plotting)
auto
ymod_um
=
y
mod
*
1000.
;
// mm->um (for plotting)
bool
isWithinInPixelROI
=
(
pitch_x
-
abs
(
xmod
*
2
)
>
m_inpixelEdgeCut
.
x
()
&&
pitch_y
-
abs
(
ymod
*
2
)
>
m_inpixelEdgeCut
.
y
());
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment