Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
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
Davide Di Croce
athena
Commits
50c576d0
Commit
50c576d0
authored
10 months ago
by
Walter Lampl
Committed by
Johannes Elmsheuser
10 months ago
Browse files
Options
Downloads
Patches
Plain Diff
LArStripsCrossTalkCorrector: Profit from C++20 std::to_array
LArStripsCrossTalkCorrector: Profit from C++20 std::to_array
parent
a2c76ada
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
LArCalorimeter/LArCalibUtils/LArCalibUtils/LArStripsCrossTalkCorrector.h
+2
-2
2 additions, 2 deletions
...LArCalibUtils/LArCalibUtils/LArStripsCrossTalkCorrector.h
with
2 additions
and
2 deletions
LArCalorimeter/LArCalibUtils/LArCalibUtils/LArStripsCrossTalkCorrector.h
+
2
−
2
View file @
50c576d0
...
...
@@ -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:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment