We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a106767 + 793e615 commit 7227919Copy full SHA for 7227919
CondFormats/EcalObjects/interface/EcalRecHitParameters.h
@@ -1,12 +1,13 @@
1
#ifndef CondFormats_EcalObjects_EcalRecHitParameters_h
2
#define CondFormats_EcalObjects_EcalRecHitParameters_h
3
4
-#include <bitset>
5
#include <array>
+#include <bitset>
6
+#include <cstdint>
7
8
constexpr size_t kNEcalChannelStatusCodes = 16; // The HW supports 16 channel status codes
9
using RecoFlagBitsArray =
- 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
11
12
struct EcalRecHitParameters {
13
RecoFlagBitsArray recoFlagBits;
0 commit comments