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
!71173
LArStripsCrossTalkCorrector: Profit from C++20 std::to_array
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
LArStripsCrossTalkCorrector: Profit from C++20 std::to_array
wlampl/athena:LArXtalkToArray
into
main
Overview
4
Commits
1
Pipelines
1
Changes
1
Merged
Walter Lampl
requested to merge
wlampl/athena:LArXtalkToArray
into
main
11 months ago
Overview
4
Commits
1
Pipelines
1
Changes
1
Expand
The title says it all ...
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
c7c399f0
1 commit,
11 months ago
1 file
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
LArCalorimeter/LArCalibUtils/LArCalibUtils/LArStripsCrossTalkCorrector.h
+
2
−
2
Options
@@ -83,8 +83,8 @@ class ATLAS_NOT_THREAD_SAFE LArStripsCrossTalkCorrector : public AthAlgorithm
const
LArEM_ID
*
m_emId
{
nullptr
};
unsigned
int
m_event_counter
=
0
;
//Ranges for eta and phi indices for barrel(0) and endcap(1)
const
std
::
array
<
unsigned
,
2
>
m_MAXeta
{
448
,
208
};
const
std
::
array
<
unsigned
,
2
>
m_MINeta
{
1
,
0
};
static
constexpr
auto
m_MAXeta
=
std
::
to_
array
<
unsigned
>
(
{
448
,
208
}
)
;
static
constexpr
auto
m_MINeta
=
std
::
to_
array
<
unsigned
>
(
{
1
,
0
}
)
;
const
unsigned
int
m_MAXphi
=
64
;
int
m_nStrips
=-
1
;
//Algorithm-Properties:
Loading