Skip to content
Snippets Groups Projects

Upgrade RichSmartID channel identifier to use 64bits.

Merged Christopher Rob Jones requested to merge jonrob/LHCb:64bit-rich-smart-id into master
Files
9
@@ -15,6 +15,7 @@
#include "Detector/UT/ChannelID.h"
#include "Detector/VP/VPChannelID.h"
#include "Kernel/RichSmartID.h"
#include <cstdint>
#include <ostream>
namespace LHCb {
@@ -201,7 +202,8 @@ namespace LHCb {
// Including forward declarations
constexpr LHCbID::LHCbID( const RichSmartID& chanID ) : LHCbID{channelIDtype::Rich, chanID.dataBitsOnly()} {
constexpr LHCbID::LHCbID( const RichSmartID& chanID )
: LHCbID{channelIDtype::Rich, (std::uint32_t)chanID.dataBitsOnly()} {
// Save the MaPMT/HPD flag in bit 27
setBit( 27, chanID.idType() );
// Set the validity bits
Loading