Skip to content
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