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
f60a1a1c
Commit
f60a1a1c
authored
Jun 08, 2021
by
Annika Vauth
Browse files
fix histo name to avoid overwriting distance histo
parent
9569a25d
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/modules/AnalysisTracks/AnalysisTracks.cpp
View file @
f60a1a1c
...
...
@@ -35,7 +35,7 @@ void AnalysisTracks::initialize() {
_tracks_per_hit_
[
detector
->
getName
().
c_str
()]
=
new
TH1F
(
"number_tracks_with same hit"
,
title
.
c_str
(),
15
,
0
,
15
);
title
=
"Cluster vs tracks ; # tracks; #clusters"
;
clusters_vs_tracks_
[
detector
->
getName
().
c_str
()]
=
new
TH2F
(
"
distance
_tracks"
,
title
.
c_str
(),
25
,
0
,
25
,
200
,
0
,
200
);
new
TH2F
(
"
clusters_vs
_tracks"
,
title
.
c_str
(),
25
,
0
,
25
,
200
,
0
,
200
);
}
// Initialise member variables
...
...
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