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
b5b0d719
Commit
b5b0d719
authored
Apr 14, 2021
by
Jens Kroeger
Browse files
AnalysisDUT: fix double->int for nTimebins
parent
4ba074a2
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/modules/AnalysisDUT/AnalysisDUT.cpp
View file @
b5b0d719
...
...
@@ -28,7 +28,7 @@ AnalysisDUT::AnalysisDUT(Configuration& config, std::shared_ptr<Detector> detect
m_timeCutFrameEdge
=
config_
.
get
<
double
>
(
"time_cut_frameedge"
);
chi2ndofCut
=
config_
.
get
<
double
>
(
"chi2ndof_cut"
);
useClosestCluster
=
config_
.
get
<
bool
>
(
"use_closest_cluster"
);
nTimeBins
=
config_
.
get
<
double
>
(
"n_time_bins"
);
nTimeBins
=
config_
.
get
<
int
>
(
"n_time_bins"
);
timeBinning
=
config_
.
get
<
double
>
(
"time_binning"
);
}
...
...
src/modules/AnalysisDUT/AnalysisDUT.h
View file @
b5b0d719
...
...
@@ -74,16 +74,44 @@ namespace corryvreckan {
TH1F
*
hTrackZPosDUT
;
TH1F
*
residualsTime
;
TH2F
*
residualsTimeVsTot
;
TH2F
*
residualsTimeVsCol
;
TH2F
*
residualsTimeVsRow
;
TH2F
*
residualsTimeVsTime
;
TH2F
*
residualsTimeVsSignal
;
TH2F
*
hAssociatedTracksGlobalPosition
;
TH2F
*
hAssociatedTracksLocalPosition
;
TH2F
*
hUnassociatedTracksGlobalPosition
;
TH1F
*
pxTimeMinusSeedTime
;
TH2F
*
pxTimeMinusSeedTime_vs_pxCharge
;
TH2F
*
pxTimeMinusSeedTime_vs_pxCharge_2px
;
TH2F
*
pxTimeMinusSeedTime_vs_pxCharge_3px
;
TH2F
*
pxTimeMinusSeedTime_vs_pxCharge_4px
;
TH2F
*
pxTimeMinusSeedTime_vs_pxCharge_2px_up
;
TH2F
*
pxTimeMinusSeedTime_vs_pxCharge_2px_down
;
TH2F
*
pxTimeMinusSeedTime_vs_pxCharge_2px_left
;
TH2F
*
pxTimeMinusSeedTime_vs_pxCharge_2px_right
;
TH2F
*
pxTimeMinusSeedTime_vs_pxCharge_2px_upleft
;
TH2F
*
pxTimeMinusSeedTime_vs_pxCharge_2px_upright
;
TH2F
*
pxTimeMinusSeedTime_vs_pxCharge_2px_downleft
;
TH2F
*
pxTimeMinusSeedTime_vs_pxCharge_2px_downright
;
TProfile2D
*
hMap_pxTimeMinusSeedTime_trackPos
;
TProfile2D
*
hMap_pxTimeMinusSeedTime_clsPos
;
TProfile2D
*
hMap_pxTimeMinusSeedTime_clsPos_evenOddCol
;
TProfile2D
*
hMap_pxTimeMinusSeedTime_clsPos_2px
;
TProfile2D
*
hMap_pxTimeMinusSeedTime_clsPos_2px_evenOddCol
;
TProfile2D
*
hMap_pxTimeMinusSeedTime_clsPos_2px_smallDeltaT
;
TProfile2D
*
hMap_pxTimeMinusSeedTime_clsPos_2px_largeDeltaT
;
TProfile2D
*
hMapLargeClusters
;
// Member variables
double
m_timeCutFrameEdge
;
double
chi2ndofCut
;
bool
useClosestCluster
;
double
nTimeBins
;
int
nTimeBins
;
double
timeBinning
;
int
num_tracks
;
};
...
...
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