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
!76668
main-cppcheck-JetCalibTools
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
main-cppcheck-JetCalibTools
sroe/athena:main-cppcheck-JetCalibTools
into
main
Overview
5
Commits
4
Pipelines
1
Changes
5
Merged
Shaun Roe
requested to merge
sroe/athena:main-cppcheck-JetCalibTools
into
main
4 months ago
Overview
5
Commits
4
Pipelines
1
Changes
5
Expand
re.
!76498 (closed)
: Fix cppcheck defects by initialising members
Edited
4 months ago
by
Shaun Roe
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
5417fd1d
4 commits,
4 months ago
5 files
+
26
−
29
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
Reconstruction/Jet/JetCalibTools/JetCalibTools/CalibrationMethods/JMSCorrection.h
+
2
−
2
Options
/*
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
*/
#ifndef JETCALIBTOOLS_JMSCORRECTION_H
@@ -76,7 +76,7 @@ class JMSCorrection
// Control the binning using a private class enum
enum
class
BinningParam
{
pt_mass_eta
,
e_LOGmOe_eta
,
e_LOGmOet_eta
,
e_LOGmOpt_eta
,
et_LOGmOet_eta
};
BinningParam
m_binParam
;
BinningParam
m_binParam
=
BinningParam
::
pt_mass_eta
;
// Check if we are reading 2D or 3D histograms
// Defaults to false for backwards compatibility
Loading