Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
atlas
athena
Merge requests
!67908
HGTDCluster mark as final. use ctors with "move" arguments
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
HGTDCluster mark as final. use ctors with "move" arguments
ATLAS-EGamma/athena:HGTD_Cluster_final_use_move_ctor
into
main
Overview
6
Commits
3
Pipelines
2
Changes
15
Merged
Christos Anastopoulos
requested to merge
ATLAS-EGamma/athena:HGTD_Cluster_final_use_move_ctor
into
main
1 year ago
Overview
6
Commits
3
Pipelines
2
Changes
15
Expand
HGTDCluster mark as final. use ctors with "move" arguments
Edited
1 year ago
by
Christos Anastopoulos
0
0
Merge request reports
Compare
main
version 1
911400c9
1 year ago
main (base)
and
latest version
latest version
7400e896
3 commits,
1 year ago
version 1
911400c9
2 commits,
1 year ago
15 files
+
74
−
86
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
15
Search (e.g. *.vue) (Ctrl+P)
HighGranularityTimingDetector/HGTD_Digitization/HGTD_FastDigitization/HGTD_FastDigitization/HGTD_SmearedDigitizationTool.h
+
19
−
19
Options
@@ -73,7 +73,7 @@ private:
StatusCode
digitize
(
const
EventContext
&
ctx
);
StatusCode
fillMultiTruthCollection
(
PRD_MultiTruthCollection
*
,
Cluster_t
*
,
TimedHitPtr
<
SiHit
>
,
const
EventContext
&
);
const
TimedHitPtr
<
SiHit
>
&
,
const
EventContext
&
);
StatusCode
fillClusterContainer
();
@@ -109,31 +109,31 @@ private:
// variables used only for writing out validation tree (not written by default)
ITHistSvc
*
m_hist_svc
;
ITHistSvc
*
m_hist_svc
{}
;
std
::
unique_ptr
<
TFile
>
m_output_file
;
std
::
unique_ptr
<
TTree
>
m_tree
;
float
m_x_hit
;
float
m_y_hit
;
float
m_x_hit_smeared
;
float
m_y_hit_smeared
;
float
m_x_hit
{}
;
float
m_y_hit
{}
;
float
m_x_hit_smeared
{}
;
float
m_y_hit_smeared
{}
;
float
m_x_entry_hit
;
float
m_y_entry_hit
;
float
m_z_entry_hit
;
float
m_x_exit_hit
;
float
m_y_exit_hit
;
float
m_z_exit_hit
;
float
m_x_entry_hit
{}
;
float
m_y_entry_hit
{}
;
float
m_z_entry_hit
{}
;
float
m_x_exit_hit
{}
;
float
m_y_exit_hit
{}
;
float
m_z_exit_hit
{}
;
float
m_hit_time
;
float
m_hit_time_smeared
;
float
m_hit_time
{}
;
float
m_hit_time_smeared
{}
;
float
m_x_cluster_global
;
float
m_y_cluster_global
;
float
m_z_cluster_global
;
float
m_x_cluster_global
{}
;
float
m_y_cluster_global
{}
;
float
m_z_cluster_global
{}
;
float
m_err_x_hit
;
float
m_err_y_hit
;
float
m_err_x_hit
{}
;
float
m_err_y_hit
{}
;
};
Loading