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
!76528
main-cppcheck-InDetAmbiTrackSelectionTool
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
main-cppcheck-InDetAmbiTrackSelectionTool
sroe/athena:main-cppcheck-InDetAmbiTrackSelectionTool
into
main
Overview
3
Commits
1
Pipelines
1
Changes
1
Merged
Shaun Roe
requested to merge
sroe/athena:main-cppcheck-InDetAmbiTrackSelectionTool
into
main
2 months ago
Overview
3
Commits
1
Pipelines
1
Changes
1
Expand
re.
!76498 (closed)
; initialise member variable
Edited
2 months ago
by
Shaun Roe
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
6127b53b
1 commit,
2 months ago
1 file
+
5
−
5
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
InnerDetector/InDetRecTools/InDetAmbiTrackSelectionTool/InDetAmbiTrackSelectionTool/InDetDenseEnvAmbiTrackSelectionTool.h
+
5
−
5
Options
// -*- C++ -*-
/*
Copyright (C) 2002-202
3
CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-202
4
CERN for the benefit of the ATLAS collaboration
*/
///////////////////////////////////////////////////////////////////
@@ -250,7 +250,7 @@ namespace InDet
struct
TSoS_Details
{
unsigned
int
m_nTSoS
;
unsigned
int
m_nTSoS
{}
;
std
::
vector
<
int
>
m_type
;
// The type of TSOS
std
::
vector
<
int
>
m_detType
;
// The Detector type 1== Pixel, 11 = b-layer, 2 SCT, 3 TRT
std
::
vector
<
int
>
m_hitIsShared
;
// Number of tracks the hit is shared with
@@ -298,13 +298,13 @@ namespace InDet
// 1 pixel hit is 1 module
// a double sided SCT hit (2 SCT hits) is 1 module
// so count by 2s for shared pixel hits and 1 per SCT (single sided hit) hit
int
m_maxSharedModules
;
int
m_maxSharedModules
{}
;
// Min number of unique hits that are not already used on any other track
// but split hits can be used on multiple tracks and be considered unique
// - can change in ROI
int
m_minNotShared
;
int
m_minNotShared
{}
;
// Min number of hits before we allow split sharing of hits -- can change if we are in ROI
int
m_minSiHits
;
int
m_minSiHits
{}
;
std
::
vector
<
double
>
m_hadF
;
std
::
vector
<
double
>
m_hadE
;
Loading