Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Corryvreckan
Corryvreckan
Commits
fef58ef0
Commit
fef58ef0
authored
May 16, 2019
by
Jens Kroeger
Browse files
AnalysisTimingATLASpix: added 2 histograms which were forgotten to be filled
parent
2ce9fc0e
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/modules/AnalysisTimingATLASpix/AnalysisTimingATLASpix.cpp
View file @
fef58ef0
...
...
@@ -442,13 +442,16 @@ StatusCode AnalysisTimingATLASpix::run(std::shared_ptr<Clipboard> clipboard) {
hTrackCorrelationTimeAssoc
->
Fill
(
timeDiff
);
hTrackCorrelationTimeVsTot
->
Fill
(
timeDiff
,
cluster
->
getSeedPixel
()
->
raw
());
hTrackCorrelationTimeVsCol
->
Fill
(
timeDiff
,
cluster
->
getSeedPixel
()
->
column
());
hTrackCorrelationTimeVsRow
->
Fill
(
timeDiff
,
cluster
->
getSeedPixel
()
->
row
());
// single-pixel and multi-pixel clusters:
if
(
cluster
->
size
()
==
1
)
{
hTrackCorrelationTimeVsTot_1px
->
Fill
(
timeDiff
,
cluster
->
getSeedPixel
()
->
raw
());
hTrackCorrelationTimeVsRow_1px
->
Fill
(
timeDiff
,
cluster
->
getSeedPixel
()
->
row
());
}
else
{
hTrackCorrelationTimeVsTot_npx
->
Fill
(
timeDiff
,
cluster
->
getSeedPixel
()
->
raw
());
hTrackCorrelationTimeVsRow_npx
->
Fill
(
timeDiff
,
cluster
->
getSeedPixel
()
->
row
());
}
hTrackCorrelationTimeVsCol
->
Fill
(
timeDiff
,
cluster
->
getSeedPixel
()
->
column
());
hTrackCorrelationTimeVsRow
->
Fill
(
timeDiff
,
cluster
->
getSeedPixel
()
->
row
());
// Calculate in-pixel position of track in microns
auto
globalIntercept
=
m_detector
->
getIntercept
(
track
);
...
...
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