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
c6cc7727
Commit
c6cc7727
authored
Nov 09, 2018
by
CLICdp user
Browse files
ClusteringSpatial: plot in [ke] rather than [e] to also show uncalibrated TOT better
parent
5e42961c
Pipeline
#579892
passed with stages
in 5 minutes and 48 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/modules/ClusteringSpatial/ClusteringSpatial.cpp
View file @
c6cc7727
...
...
@@ -26,8 +26,8 @@ void ClusteringSpatial::initialise() {
clusterWidthRow
=
new
TH1F
(
"clusterWidthRow"
,
title
.
c_str
(),
25
,
0
,
25
);
title
=
m_detector
->
name
()
+
" Cluster Width - Columns;cluster width [columns];events"
;
clusterWidthColumn
=
new
TH1F
(
"clusterWidthColumn"
,
title
.
c_str
(),
100
,
0
,
100
);
title
=
m_detector
->
name
()
+
" Cluster Charge;cluster charge [e];events"
;
clusterTot
=
new
TH1F
(
"clusterTot"
,
title
.
c_str
(),
100
00
,
0
,
1000
00
);
title
=
m_detector
->
name
()
+
" Cluster Charge;cluster charge [
k
e];events"
;
clusterTot
=
new
TH1F
(
"clusterTot"
,
title
.
c_str
(),
3
00
,
0
,
3
00
);
title
=
m_detector
->
name
()
+
" Cluster Position (Global);x [mm];y [mm];events"
;
clusterPositionGlobal
=
new
TH2F
(
"clusterPositionGlobal"
,
title
.
c_str
(),
...
...
@@ -120,7 +120,7 @@ StatusCode ClusteringSpatial::run(std::shared_ptr<Clipboard> clipboard) {
clusterSize
->
Fill
(
static_cast
<
double
>
(
cluster
->
size
()));
clusterWidthRow
->
Fill
(
cluster
->
rowWidth
());
clusterWidthColumn
->
Fill
(
cluster
->
columnWidth
());
clusterTot
->
Fill
(
cluster
->
tot
());
clusterTot
->
Fill
(
cluster
->
tot
()
*
1e-3
);
clusterPositionGlobal
->
Fill
(
cluster
->
global
().
x
(),
cluster
->
global
().
y
());
deviceClusters
->
push_back
(
cluster
);
...
...
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