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
4da7c2e7
Commit
4da7c2e7
authored
Jun 17, 2021
by
Jens Kroeger
Browse files
AnalysisEfficiency: add brackets around logic statement for more clarity
parent
c8df66f9
Pipeline
#2732194
passed with stages
in 13 minutes and 46 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/modules/AnalysisEfficiency/AnalysisEfficiency.cpp
View file @
4da7c2e7
...
...
@@ -374,7 +374,7 @@ StatusCode AnalysisEfficiency::run(const std::shared_ptr<Clipboard>& clipboard)
auto
ymod_um
=
ymod
*
1000.
;
// mm->um (for plotting)
bool
isWithinInPixelROI
=
(
pitch_x
-
abs
(
xmod
*
2
)
>
m_inpixelEdgeCut
.
x
()
&&
pitch_y
-
abs
(
ymod
*
2
)
>
m_inpixelEdgeCut
.
y
());
(
pitch_x
-
abs
(
xmod
*
2
)
>
m_inpixelEdgeCut
.
x
()
)
&&
(
pitch_y
-
abs
(
ymod
*
2
)
>
m_inpixelEdgeCut
.
y
());
// Get the DUT clusters from the clipboard, that are assigned to the track
auto
associated_clusters
=
track
->
getAssociatedClusters
(
m_detector
->
getName
());
...
...
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