Skip to content
Snippets Groups Projects
Unverified Commit 4b01c2c1 authored by Emilio Meschi's avatar Emilio Meschi :bicyclist_tone1: Committed by GitHub
Browse files

Bug fix: update phiext mask

One bit missing in extrapolated phi mask.
Does not affect stored data but does affect roottuples
parent d0b671d6
No related branches found
No related tags found
1 merge request!59CMSSW json file
...@@ -31,7 +31,7 @@ struct masks{ ...@@ -31,7 +31,7 @@ struct masks{
static constexpr uint32_t interm = 0x000f; static constexpr uint32_t interm = 0x000f;
static constexpr uint32_t linkid = 0x000f; static constexpr uint32_t linkid = 0x000f;
//masks for muon 64 bits //masks for muon 64 bits
static constexpr uint32_t phiext = 0x01ff; static constexpr uint32_t phiext = 0x03ff;
static constexpr uint32_t pt = 0x01ff; static constexpr uint32_t pt = 0x01ff;
static constexpr uint32_t qual = 0x000f; static constexpr uint32_t qual = 0x000f;
static constexpr uint32_t etaext = 0x01ff; static constexpr uint32_t etaext = 0x01ff;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment