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
2c851d1d
Commit
2c851d1d
authored
Nov 09, 2018
by
Simon Spannagel
Browse files
More axis labels
parent
e34eae77
Pipeline
#580125
passed with stages
in 9 minutes and 7 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/modules/EventLoaderCLICpix2/EventLoaderCLICpix2.cpp
View file @
2c851d1d
...
...
@@ -131,7 +131,7 @@ void EventLoaderCLICpix2::initialise() {
0
,
m_detector
->
nPixelsY
());
title
=
m_detector
->
name
()
+
" TOT spectrum;TOT;pixels"
;
hPixelToT
=
new
TH1F
(
"pixelToT"
,
"pixelToT"
,
32
,
0
,
31
);
hPixelToT
=
new
TH1F
(
"pixelToT"
,
title
.
c_str
()
,
32
,
0
,
31
);
title
=
m_detector
->
name
()
+
" TOT map;x [px];y [px];TOT"
;
hPixelToTMap
=
new
TProfile2D
(
"pixelToTMap"
,
title
.
c_str
(),
...
...
@@ -144,11 +144,11 @@ void EventLoaderCLICpix2::initialise() {
0
,
maxcounter
-
1
);
title
=
m_detector
->
name
()
+
" TOA spectrum;TOA;pixels"
;
hPixelToA
=
new
TH1F
(
"pixelToA"
,
"pixelToA"
,
maxcounter
,
0
,
maxcounter
-
1
);
hPixelToA
=
new
TH1F
(
"pixelToA"
,
title
.
c_str
()
,
maxcounter
,
0
,
maxcounter
-
1
);
title
=
m_detector
->
name
()
+
" CNT spectrum;CNT;pixels"
;
hPixelCnt
=
new
TH1F
(
"pixelCnt"
,
"pixelCnt"
,
maxcounter
,
0
,
maxcounter
-
1
);
hPixelCnt
=
new
TH1F
(
"pixelCnt"
,
title
.
c_str
()
,
maxcounter
,
0
,
maxcounter
-
1
);
title
=
m_detector
->
name
()
+
" Pixel multiplicity;pixels;frames"
;
hPixelsPerFrame
=
new
TH1F
(
"pixelsPerFrame"
,
"pixelsPerFrame"
,
1000
,
0
,
1000
);
hPixelsPerFrame
=
new
TH1F
(
"pixelsPerFrame"
,
title
.
c_str
()
,
1000
,
0
,
1000
);
title
=
m_detector
->
name
()
+
" Map of masked pixels;x [px];y [px];mask code"
;
hMaskMap
=
new
TH2F
(
"maskMap"
,
...
...
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