Skip to content
Snippets Groups Projects
Commit a10bcd96 authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

HGTD_EventTPCnv: fix uninitMemberVar cppcheck warning

parent 55244b46
No related branches found
No related tags found
No related merge requests found
/**
* Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration.
* Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration.
*
* @file HGTD_EventTPCnv/HGTD_RDO_p1.h
* @author Alexander Leopold <alexander.leopold@cern.ch>
......@@ -21,12 +21,12 @@ public:
friend class HGTD_RDO_Cnv_p1;
private:
IdType_t m_rdo_id;
float m_toa;
unsigned int m_tot;
unsigned short m_bcid;
unsigned short m_l1_id;
unsigned short m_l1_a;
IdType_t m_rdo_id{};
float m_toa{};
unsigned int m_tot{};
unsigned short m_bcid{};
unsigned short m_l1_id{};
unsigned short m_l1_a{};
};
#endif // HGTD_RDO_P1_H
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