Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Corryvreckan
Corryvreckan
Commits
22facf1c
Commit
22facf1c
authored
Mar 30, 2021
by
Jens Kroeger
Browse files
Revert "AnalysisDUT: improve naming of histograms and remove empty old histogram"
This reverts commit
700c25cc
.
parent
2ce89fc2
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/modules/AnalysisDUT/AnalysisDUT.cpp
View file @
22facf1c
...
...
@@ -66,21 +66,25 @@ void AnalysisDUT::initialize() {
m_detector
->
displacement
().
z
()
+
10
);
// Per-pixel histograms
hHitMapAssoc
=
new
TH2F
(
"hitMapAssoc"
,
"Hit map of
pixels from
associated clusters; hit column; hit row"
,
"Hit map of associated clusters; hit column; hit row"
,
m_detector
->
nPixels
().
X
(),
-
0.5
,
m_detector
->
nPixels
().
X
()
-
0.5
,
m_detector
->
nPixels
().
Y
(),
-
0.5
,
m_detector
->
nPixels
().
Y
()
-
0.5
);
hPixelRawValueAssoc
=
new
TH1F
(
"pixelRawValueAssoc"
,
"Charge distribution of pixels from associated clusters;pixel raw value;#entries"
,
1024
,
-
0.5
,
1023.5
);
hHitMapROI
=
new
TH2F
(
"hitMapROI"
,
"Map of hits within the region-of-interest; hit column; hit row"
,
m_detector
->
nPixels
().
X
(),
-
0.5
,
m_detector
->
nPixels
().
X
()
-
0.5
,
m_detector
->
nPixels
().
Y
(),
-
0.5
,
m_detector
->
nPixels
().
Y
()
-
0.5
);
hPixelRawValueAssoc
=
new
TH1F
(
"pixelRawValueAssoc"
,
"Charge distribution of associated pixels;pixel raw value;#entries"
,
1024
,
-
0.5
,
1023.5
);
hPixelRawValueMapAssoc
=
new
TProfile2D
(
"pixelRawValueMapAssoc"
,
"Charge map of
pixels from
associated
cluster
s;pixel raw values;# entries"
,
"Charge map of associated
pixel
s;pixel raw values;# entries"
,
m_detector
->
nPixels
().
X
(),
-
0.5
,
m_detector
->
nPixels
().
X
()
-
0.5
,
...
...
Write
Preview
Supports
Markdown
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