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
73aace52
Commit
73aace52
authored
May 14, 2019
by
Jens Kroeger
Browse files
AnalysisEfficiency: merged .h from jens_dev (next: .cpp as well)
parent
b0dd9892
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/modules/AnalysisEfficiency/AnalysisEfficiency.h
View file @
73aace52
...
...
@@ -15,6 +15,9 @@
#include
"core/module/Module.hpp"
#include
"TEfficiency.h"
#include
"TH2D.h"
#include
"TNamed.h"
#include
"TProfile2D.h"
namespace
corryvreckan
{
...
...
@@ -39,14 +42,38 @@ namespace corryvreckan {
private:
std
::
shared_ptr
<
Detector
>
m_detector
;
TH1D
*
hPixelEfficiency
;
TProfile2D
*
hPixelEfficiencyMap_trackPos
;
TProfile2D
*
hChipEfficiencyMap_trackPos
;
TProfile2D
*
hGlobalEfficiencyMap_trackPos
;
TProfile2D
*
hChipEfficiencyMap_clustPos
;
TProfile2D
*
hGlobalEfficiencyMap_clustPos
;
TEfficiency
*
eTotalEfficiency
;
TNamed
*
totalEfficiency
;
TH1D
*
hTimeDiffPrevTrack_assocCluster
;
TH1D
*
hTimeDiffPrevTrack_noAssocCluster
;
TH1D
*
hRowDiffPrevTrack_assocCluster
;
TH1D
*
hColDiffPrevTrack_assocCluster
;
TH1D
*
hRowDiffPrevTrack_noAssocCluster
;
TH1D
*
hColDiffPrevTrack_noAssocCluster
;
TH1D
*
hTrackTimeToPrevHit_matched
;
TH1D
*
hTrackTimeToPrevHit_notmatched
;
TH2D
*
hPosDiffPrevTrack_assocCluster
;
TH2D
*
hPosDiffPrevTrack_noAssocCluster
;
double
m_chi2ndofCut
,
m_timeCutFrameEdge
,
m_pixelTolerance
,
m_inpixelBinSize
;
int
total_tracks
,
matched_tracks
;
int
total_tracks
=
0
;
int
matched_tracks
=
0
;
double
last_track_timestamp
=
0
;
double
last_track_col
=
0.
;
double
last_track_row
=
0.
;
Matrix
<
double
>
prev_hit_ts
;
// matrix containing previous hit timestamp for every pixel
};
}
// namespace corryvreckan
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