Skip to content
Snippets Groups Projects
Commit 65d49daa authored by Tadej Novak's avatar Tadej Novak
Browse files

Merge branch 'indeteapool' into 'main'

InDetEventAthenaPool: fix uninitMemberVar cppcheck warning

See merge request atlas/athena!72865
parents 10d46808 dc98e0de
No related branches found
No related tags found
No related merge requests found
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2024 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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment