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
a563e024
Commit
a563e024
authored
Dec 13, 2018
by
Jens Kroeger
Browse files
fixed some things I broke while checking out files
parent
d213eb5b
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/modules/EventLoaderATLASpix/EventLoaderATLASpix.cpp
View file @
a563e024
...
...
@@ -123,26 +123,6 @@ void EventLoaderATLASpix::initialise() {
0
,
m_detector
->
nPixels
().
Y
());
hHitMap_highTot
=
new
TH2F
(
"hitMap_highTot"
,
"hitMap_hithTot"
,
m_detector
->
nPixels
().
X
(),
0
,
m_detector
->
nPixels
().
X
(),
m_detector
->
nPixels
().
Y
(),
0
,
m_detector
->
nPixels
().
Y
());
hHitMap_totWeighted
=
new
TProfile2D
(
"hHitMap_totWeighted"
,
"hHitMap_totWeighted"
,
m_detector
->
nPixels
().
X
(),
0
,
m_detector
->
nPixels
().
X
(),
m_detector
->
nPixels
().
Y
(),
0
,
m_detector
->
nPixels
().
Y
(),
0
,
100
);
hPixelToT
=
new
TH1F
(
"pixelToT"
,
"pixelToT"
,
64
,
0
,
64
);
hPixelToT
->
GetXaxis
()
->
SetTitle
(
"ToT in TS2 clock cycles."
);
hPixelToTCal
=
new
TH1F
(
"pixelToTCal"
,
"pixelToT"
,
100
,
0
,
100
);
...
...
@@ -205,10 +185,6 @@ StatusCode EventLoaderATLASpix::run(std::shared_ptr<Clipboard> clipboard) {
for
(
auto
px
:
(
*
pixels
))
{
hHitMap
->
Fill
(
px
->
column
(),
px
->
row
());
if
(
px
->
tot
()
>
40
)
{
hHitMap_highTot
->
Fill
(
px
->
column
(),
px
->
row
());
}
hHitMap_totWeighted
->
Fill
(
px
->
column
(),
px
->
row
(),
px
->
tot
());
hPixelToT
->
Fill
(
px
->
tot
());
hPixelToTCal
->
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