Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ECAL - Fix compilation issue with gcc13 #47046

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions CondFormats/EcalObjects/interface/EcalRecHitParameters.h
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
#ifndef CondFormats_EcalObjects_EcalRecHitParameters_h
#define CondFormats_EcalObjects_EcalRecHitParameters_h

#include <bitset>
#include <array>
#include <bitset>
#include <cstdint>

constexpr size_t kNEcalChannelStatusCodes = 16; // The HW supports 16 channel status codes
using RecoFlagBitsArray =
std::array<uint32_t, kNEcalChannelStatusCodes>; // associate recoFlagBits to all channel status codes
std::array<std::uint32_t, kNEcalChannelStatusCodes>; // associate recoFlagBits to all channel status codes

struct EcalRecHitParameters {
RecoFlagBitsArray recoFlagBits;
Expand Down