Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena-acts
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue 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
Dimitra Amperiadou
athena-acts
Commits
dc98e0de
Commit
dc98e0de
authored
7 months ago
by
Frank Winklmeier
Browse files
Options
Downloads
Patches
Plain Diff
InDetEventAthenaPool: fix uninitMemberVar cppcheck warning
parent
55244b46
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
InnerDetector/InDetEventCnv/InDetEventAthenaPool/InDetEventAthenaPool/SCT3_RawData_p1.h
+5
-5
5 additions, 5 deletions
...DetEventAthenaPool/InDetEventAthenaPool/SCT3_RawData_p1.h
with
5 additions
and
5 deletions
InnerDetector/InDetEventCnv/InDetEventAthenaPool/InDetEventAthenaPool/SCT3_RawData_p1.h
+
5
−
5
View file @
dc98e0de
/*
Copyright (C) 2002-20
17
CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-20
24
CERN for the benefit of the ATLAS collaboration
*/
//
...
...
@@ -13,13 +13,13 @@
class
SCT3_RawData_p1
{
public:
SCT3_RawData_p1
()
:
m_rdoId
{
0
},
m_word
{
0
}
{}
;
SCT3_RawData_p1
()
=
default
;
// List of Cnv classes that convert this into Rdo objects
friend
class
SCT3_RawDataCnv_p1
;
private:
Identifier32
::
value_type
m_rdoId
;
//Offline ID for readout channel
unsigned
int
m_word
;
// raw data word
float
m_errCH
[
20
];
Identifier32
::
value_type
m_rdoId
{
0
}
;
//Offline ID for readout channel
unsigned
int
m_word
{
0
}
;
// raw data word
float
m_errCH
[
20
]
{}
;
};
#endif
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