Skip to content

Commit 7227919

Browse files
authored
Merge pull request #47046 from thomreis/ecalrechitproducer-alpaka-migration-gcc13fix
ECAL - Fix compilation issue with gcc13
2 parents a106767 + 793e615 commit 7227919

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

CondFormats/EcalObjects/interface/EcalRecHitParameters.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
#ifndef CondFormats_EcalObjects_EcalRecHitParameters_h
22
#define CondFormats_EcalObjects_EcalRecHitParameters_h
33

4-
#include <bitset>
54
#include <array>
5+
#include <bitset>
6+
#include <cstdint>
67

78
constexpr size_t kNEcalChannelStatusCodes = 16; // The HW supports 16 channel status codes
89
using RecoFlagBitsArray =
9-
std::array<uint32_t, kNEcalChannelStatusCodes>; // associate recoFlagBits to all channel status codes
10+
std::array<std::uint32_t, kNEcalChannelStatusCodes>; // associate recoFlagBits to all channel status codes
1011

1112
struct EcalRecHitParameters {
1213
RecoFlagBitsArray recoFlagBits;

0 commit comments

Comments
 (0)