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
dd97d8b6
Commit
dd97d8b6
authored
May 15, 2019
by
Jens Kroeger
Browse files
EventLoaderATLASpix: changed px->tot() into px->raw() after merging master
parent
4cde8e17
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/modules/EventLoaderATLASpix/EventLoaderATLASpix.cpp
View file @
dd97d8b6
...
...
@@ -219,11 +219,11 @@ StatusCode EventLoaderATLASpix::run(std::shared_ptr<Clipboard> clipboard) {
for
(
auto
px
:
(
*
pixels
))
{
hHitMap
->
Fill
(
px
->
column
(),
px
->
row
());
if
(
px
->
tot
()
>
m_highToTCut
)
{
if
(
px
->
raw
()
>
m_highToTCut
)
{
hHitMap_highTot
->
Fill
(
px
->
column
(),
px
->
row
());
}
hHitMap_totWeighted
->
Fill
(
px
->
column
(),
px
->
row
(),
px
->
tot
());
hPixelToT
->
Fill
(
px
->
tot
());
hHitMap_totWeighted
->
Fill
(
px
->
column
(),
px
->
row
(),
px
->
raw
());
hPixelToT
->
Fill
(
px
->
raw
());
hPixelCharge
->
Fill
(
px
->
charge
());
hPixelToA
->
Fill
(
px
->
timestamp
());
...
...
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