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
7c0e2381
Commit
7c0e2381
authored
Jun 21, 2021
by
Lennart Huth
Browse files
Merge branch 'checkTracking' of
https://gitlab.cern.ch/lhuth/corryvreckan
into checkTracking
parents
6f2b3f05
a2347c46
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/modules/AnalysisTracks/AnalysisTracks.cpp
View file @
7c0e2381
...
...
@@ -29,13 +29,13 @@ void AnalysisTracks::initialize() {
throw
RuntimeError
(
"Cannot create or access local ROOT directory for module "
+
this
->
getUniqueName
());
}
local_directory
->
cd
();
title
=
"Disance between tracks ; distance [mm]; entries"
;
title
=
"Dis
t
ance between tracks ; distance [mm]; entries"
;
_distance_between_tracks_
[
detector
->
getName
().
c_str
()]
=
new
TH1F
(
"distance_tracks"
,
title
.
c_str
(),
1000
,
0
,
10
);
title
=
"Tracks with same hits ; # tracks with same hit; entries"
;
_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
...
...
src/modules/AnalysisTracks/README.md
View file @
7c0e2381
...
...
@@ -4,7 +4,7 @@
**Status**
: Work in progress
### Description
Check the recontructed tracks for track distances, double usage of clusters, etc
Check the recon
s
tructed tracks for track distances, double usage of clusters, etc
### Parameters
No parameters are used from the configuration file.
...
...
@@ -21,3 +21,4 @@ For each detector the following plots are produced:
[AnalysisTracks]
```
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