Skip to content
Snippets Groups Projects

fix muctpi cand flags

Merged Aimilianos Koulouris requested to merge aikoulou into master
1 file
+ 4
4
Compare changes
  • Side-by-side
  • Inline
@@ -123,19 +123,19 @@ namespace MuCTPIdataformat_run3 {
@@ -123,19 +123,19 @@ namespace MuCTPIdataformat_run3 {
/// Mask for extracting the GoodMF bit for endcap/forward candidates from the data words
/// Mask for extracting the GoodMF bit for endcap/forward candidates from the data words
static const uint32_t EndcapForwardGoodMFMask = 0x1;
static const uint32_t EndcapForwardGoodMFMask = 0x1;
/// Position of the GoodMF bit in endcap/fw data words
/// Position of the GoodMF bit in endcap/fw data words
static const uint32_t EndcapForwardGoodMFShift = 18;
static const uint32_t EndcapForwardGoodMFShift = 15;
/// Mask for extracting the InnerCoin bit for endcap/forward candidates from the data words
/// Mask for extracting the InnerCoin bit for endcap/forward candidates from the data words
static const uint32_t EndcapForwardInnerCoinMask = 0x1;
static const uint32_t EndcapForwardInnerCoinMask = 0x1;
/// Position of the InnerCoin bit in endcap/fw data words
/// Position of the InnerCoin bit in endcap/fw data words
static const uint32_t EndcapForwardInnerCoinShift = 18;
static const uint32_t EndcapForwardInnerCoinShift = 14;
/// Mask for extracting the BW23 bit for endcap/forward candidates from the data words
/// Mask for extracting the BW23 bit for endcap/forward candidates from the data words
static const uint32_t EndcapForwardBW23Mask = 0x1;
static const uint32_t EndcapForwardBW23Mask = 0x1;
/// Position of the BW23 bit in endcap/fw data words
/// Position of the BW23 bit in endcap/fw data words
static const uint32_t EndcapForwardBW23Shift = 18;
static const uint32_t EndcapForwardBW23Shift = 13;
/// Mask for extracting the Charge bit for endcap/forward candidates from the data words
/// Mask for extracting the Charge bit for endcap/forward candidates from the data words
static const uint32_t EndcapForwardChargeMask = 0x1;
static const uint32_t EndcapForwardChargeMask = 0x1;
/// Position of the Charge bit in endcap/fw data words
/// Position of the Charge bit in endcap/fw data words
static const uint32_t EndcapForwardChargeShift = 18;
static const uint32_t EndcapForwardChargeShift = 12;
/// Mask for extracting the VETO bit from the data words
/// Mask for extracting the VETO bit from the data words
static const uint32_t CandVetoMask = 0x1;
static const uint32_t CandVetoMask = 0x1;
Loading