CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Static Public Member Functions | Static Public Attributes | Static Private Member Functions
l1t::MuonRawDigiTranslator Class Reference

#include <MuonRawDigiTranslator.h>

Static Public Member Functions

static int calcHwEta (const uint32_t &raw, const unsigned absEtaShift, const unsigned etaSignShift)
 
static void fillIntermediateMuon (Muon &mu, uint32_t raw_data_00_31, uint32_t raw_data_32_63, unsigned int fw)
 
static void fillMuon (Muon &mu, uint32_t raw_data_spare, uint32_t raw_data_00_31, uint32_t raw_data_32_63, int fed, unsigned int fw, int muInBx)
 
static void fillMuon (Muon &mu, uint32_t raw_data_spare, uint64_t dataword, int fed, unsigned int fw, int muInBx)
 
static void generate64bitDataWord (const Muon &mu, uint32_t &raw_data_spare, uint64_t &dataword, int fedId, int fwId, int muInBx)
 
static void generatePackedDataWords (const Muon &mu, uint32_t &raw_data_spare, uint32_t &raw_data_00_31, uint32_t &raw_data_32_63, int fedId, int fwId, int muInBx)
 

Static Public Attributes

static constexpr unsigned absEtaAtVtxShift_ = 23
 
static constexpr unsigned absEtaMask_ = 0xFF
 
static constexpr unsigned absEtaMu1Shift_ = 13
 
static constexpr unsigned absEtaMu2Shift_ = 22
 
static constexpr unsigned absEtaShift_ = 21
 
static constexpr unsigned chargeShift_ = 2
 
static constexpr unsigned chargeValidShift_ = 3
 
static constexpr unsigned dxyMask_ = 0x3
 
static constexpr unsigned dxyShift_ = 30
 
static constexpr unsigned etaAtVtxSignShift_ = 31
 
static constexpr unsigned etaMu1SignShift_ = 21
 
static constexpr unsigned etaMu2SignShift_ = 30
 
static constexpr unsigned etaSignShift_ = 29
 
static constexpr unsigned isoMask_ = 0x3
 
static constexpr unsigned isoShift_ = 0
 
static constexpr unsigned phiAtVtxShift_ = 0
 
static constexpr unsigned phiMask_ = 0x3FF
 
static constexpr unsigned phiShift_ = 11
 
static constexpr unsigned ptMask_ = 0x1FF
 
static constexpr unsigned ptShift_ = 10
 
static constexpr unsigned ptUnconstrainedIntermedidateShift_ = 0
 
static constexpr unsigned ptUnconstrainedMask_ = 0xFF
 
static constexpr unsigned ptUnconstrainedShift_ = 21
 
static constexpr unsigned qualMask_ = 0xF
 
static constexpr unsigned qualShift_ = 19
 
static constexpr unsigned tfMuonIndexMask_ = 0x7F
 
static constexpr unsigned tfMuonIndexShift_ = 4
 

Static Private Member Functions

static void fillIntermediateMuonQuantitiesRun3 (Muon &mu, uint32_t raw_data_00_31, uint32_t raw_data_32_63)
 
static void fillMuonCoordinates2016 (Muon &mu, uint32_t raw_data_00_31, uint32_t raw_data_32_63)
 
static void fillMuonCoordinatesFrom2017 (Muon &mu, uint32_t raw_data_00_31, uint32_t raw_data_32_63)
 
static void fillMuonQuantitiesRun3 (Muon &mu, uint32_t raw_data_spare, uint32_t raw_data_00_31, uint32_t raw_data_32_63, int muInBx, bool wasSpecialMWGR=false)
 
static void fillMuonStableQuantities (Muon &mu, uint32_t raw_data_00_31, uint32_t raw_data_32_63)
 
static void generatePackedDataWordsRun3 (const Muon &mu, int abs_eta, int abs_eta_at_vtx, uint32_t &raw_data_spare, uint32_t &raw_data_00_31, uint32_t &raw_data_32_63, int muInBx, bool wasSpecialMWGR=false)
 

Detailed Description

Definition at line 7 of file MuonRawDigiTranslator.h.

Member Function Documentation

int l1t::MuonRawDigiTranslator::calcHwEta ( const uint32_t &  raw,
const unsigned  absEtaShift,
const unsigned  etaSignShift 
)
static

Definition at line 266 of file MuonRawDigiTranslator.cc.

268  {
269  // eta is coded as two's complement
270  int abs_eta = (raw >> absEtaShift) & absEtaMask_;
271  if ((raw >> etaSignShift) & 0x1) {
272  return abs_eta - (1 << (etaSignShift - absEtaShift));
273  } else {
274  return abs_eta;
275  }
276 }
static constexpr unsigned absEtaMask_
void l1t::MuonRawDigiTranslator::fillIntermediateMuon ( Muon mu,
uint32_t  raw_data_00_31,
uint32_t  raw_data_32_63,
unsigned int  fw 
)
static

Definition at line 36 of file MuonRawDigiTranslator.cc.

References l1t::Muon::setHwCharge().

Referenced by l1t::stage2::IntermediateMuonUnpacker::unpackBx().

39  {
40  // Need the hw charge to properly compute dPhi
41  mu.setHwCharge((raw_data_32_63 >> chargeShift_) & 0x1);
42 
43  if (fw < 0x4010000) {
44  fillMuonCoordinates2016(mu, raw_data_00_31, raw_data_32_63);
45  } else if (fw < 0x6000000) {
46  fillMuonCoordinatesFrom2017(mu, raw_data_00_31, raw_data_32_63);
47  } else {
48  fillIntermediateMuonQuantitiesRun3(mu, raw_data_00_31, raw_data_32_63);
49  }
50 
51  // Fill pT, qual, iso, charge, index bits, phys. coordinates at vtx & unconstrained pT
52  fillMuonStableQuantities(mu, raw_data_00_31, raw_data_32_63);
53 }
static void fillIntermediateMuonQuantitiesRun3(Muon &mu, uint32_t raw_data_00_31, uint32_t raw_data_32_63)
const int mu
Definition: Constants.h:22
static constexpr unsigned chargeShift_
static void fillMuonStableQuantities(Muon &mu, uint32_t raw_data_00_31, uint32_t raw_data_32_63)
static void fillMuonCoordinatesFrom2017(Muon &mu, uint32_t raw_data_00_31, uint32_t raw_data_32_63)
static void fillMuonCoordinates2016(Muon &mu, uint32_t raw_data_00_31, uint32_t raw_data_32_63)
void l1t::MuonRawDigiTranslator::fillIntermediateMuonQuantitiesRun3 ( Muon mu,
uint32_t  raw_data_00_31,
uint32_t  raw_data_32_63 
)
staticprivate

Definition at line 170 of file MuonRawDigiTranslator.cc.

References l1t::Muon::setHwDXY(), and l1t::Muon::setHwPtUnconstrained().

172  {
173  fillMuonCoordinatesFrom2017(mu, raw_data_00_31, raw_data_32_63);
174 
175  // displacement information
176  mu.setHwDXY((raw_data_32_63 >> dxyShift_) & dxyMask_);
177  mu.setHwPtUnconstrained((raw_data_00_31 >> ptUnconstrainedIntermedidateShift_) & ptUnconstrainedMask_);
178 }
static constexpr unsigned dxyMask_
static constexpr unsigned ptUnconstrainedMask_
const int mu
Definition: Constants.h:22
static constexpr unsigned ptUnconstrainedIntermedidateShift_
static constexpr unsigned dxyShift_
static void fillMuonCoordinatesFrom2017(Muon &mu, uint32_t raw_data_00_31, uint32_t raw_data_32_63)
void l1t::MuonRawDigiTranslator::fillMuon ( Muon mu,
uint32_t  raw_data_spare,
uint32_t  raw_data_00_31,
uint32_t  raw_data_32_63,
int  fed,
unsigned int  fw,
int  muInBx 
)
static

Definition at line 5 of file MuonRawDigiTranslator.cc.

References chargeShift_, fillMuonCoordinates2016(), fillMuonCoordinatesFrom2017(), fillMuonQuantitiesRun3(), fillMuonStableQuantities(), and l1t::Muon::setHwCharge().

Referenced by l1t::stage2::MuonUnpacker::unpackBx().

11  {
12  // Need the hw charge to properly compute dPhi
13  mu.setHwCharge((raw_data_32_63 >> chargeShift_) & 0x1);
14 
15  // The position of the eta and phi coordinates in the RAW data changed between the 2016 run and the 2017 run.
16  // Eta and phi at the muon system are replaced by eta and phi at the vertex
17  // Eta and phi at the muon system are moved to spare bits
18  // In Run-3 we have displacement information.
19  // To make room for these data the raw eta value was moved to the second "spare" word which we will have to treat separately
20  // The uGMT (FED 1402) or uGT (FED 1404) FW versions are used to determine the era.
21  if ((fed == 1402 && fw < 0x4010000) || (fed == 1404 && fw < 0x10A6)) {
22  fillMuonCoordinates2016(mu, raw_data_00_31, raw_data_32_63);
23  } else if ((fed == 1402 && fw < 0x6000000) || (fed == 1404 && fw < 0x1120)) {
24  fillMuonCoordinatesFrom2017(mu, raw_data_00_31, raw_data_32_63);
25  } else if ((fed == 1402 && fw == 0x6000001) || (fed == 1404 && fw < 0x1130)) {
26  // We're unpacking data from the November MWGR where the raw eta values were shifted by one bit.
27  fillMuonQuantitiesRun3(mu, raw_data_spare, raw_data_00_31, raw_data_32_63, muInBx, true);
28  } else {
29  fillMuonQuantitiesRun3(mu, raw_data_spare, raw_data_00_31, raw_data_32_63, muInBx, false);
30  }
31 
32  // Fill pT, qual, iso, charge, index bits, coordinates at vtx
33  fillMuonStableQuantities(mu, raw_data_00_31, raw_data_32_63);
34 }
static void fillMuonQuantitiesRun3(Muon &mu, uint32_t raw_data_spare, uint32_t raw_data_00_31, uint32_t raw_data_32_63, int muInBx, bool wasSpecialMWGR=false)
const int mu
Definition: Constants.h:22
static constexpr unsigned chargeShift_
static void fillMuonStableQuantities(Muon &mu, uint32_t raw_data_00_31, uint32_t raw_data_32_63)
static void fillMuonCoordinatesFrom2017(Muon &mu, uint32_t raw_data_00_31, uint32_t raw_data_32_63)
static void fillMuonCoordinates2016(Muon &mu, uint32_t raw_data_00_31, uint32_t raw_data_32_63)
void l1t::MuonRawDigiTranslator::fillMuon ( Muon mu,
uint32_t  raw_data_spare,
uint64_t  dataword,
int  fed,
unsigned int  fw,
int  muInBx 
)
static

Definition at line 83 of file MuonRawDigiTranslator.cc.

84  {
85  fillMuon(
86  mu, raw_data_spare, (uint32_t)(dataword & 0xFFFFFFFF), (uint32_t)((dataword >> 32) & 0xFFFFFFFF), fed, fw, muInBx);
87 }
const int mu
Definition: Constants.h:22
static void fillMuon(Muon &mu, uint32_t raw_data_spare, uint32_t raw_data_00_31, uint32_t raw_data_32_63, int fed, unsigned int fw, int muInBx)
void l1t::MuonRawDigiTranslator::fillMuonCoordinates2016 ( Muon mu,
uint32_t  raw_data_00_31,
uint32_t  raw_data_32_63 
)
staticprivate

Definition at line 89 of file MuonRawDigiTranslator.cc.

References l1t::L1Candidate::hwEta(), l1t::L1Candidate::hwPhi(), l1t::Muon::setHwDEtaExtra(), l1t::Muon::setHwDPhiExtra(), l1t::L1Candidate::setHwEta(), l1t::Muon::setHwEtaAtVtx(), l1t::L1Candidate::setHwPhi(), and l1t::Muon::setHwPhiAtVtx().

Referenced by fillMuon().

89  {
90  // coordinates at the muon system are in 2016 where in 2017 eta and phi at the vertex are
91  mu.setHwEta(calcHwEta(raw_data_00_31, absEtaAtVtxShift_, etaAtVtxSignShift_));
92  mu.setHwPhi((raw_data_00_31 >> phiAtVtxShift_) & phiMask_);
93 
94  // set the coordiantes at vertex to be the same as the coordinates at the muon system
95  mu.setHwEtaAtVtx(mu.hwEta());
96  mu.setHwPhiAtVtx(mu.hwPhi());
97  // deltas are 0
98  mu.setHwDEtaExtra(0);
99  mu.setHwDPhiExtra(0);
100 }
static int calcHwEta(const uint32_t &raw, const unsigned absEtaShift, const unsigned etaSignShift)
static constexpr unsigned absEtaAtVtxShift_
static constexpr unsigned etaAtVtxSignShift_
const int mu
Definition: Constants.h:22
static constexpr unsigned phiAtVtxShift_
static constexpr unsigned phiMask_
void l1t::MuonRawDigiTranslator::fillMuonCoordinatesFrom2017 ( Muon mu,
uint32_t  raw_data_00_31,
uint32_t  raw_data_32_63 
)
staticprivate

Definition at line 102 of file MuonRawDigiTranslator.cc.

References l1t::Muon::hwCharge(), l1t::L1Candidate::hwEta(), l1t::Muon::hwEtaAtVtx(), l1t::L1Candidate::hwPhi(), l1t::Muon::hwPhiAtVtx(), l1t::Muon::setHwDEtaExtra(), l1t::Muon::setHwDPhiExtra(), l1t::L1Candidate::setHwEta(), l1t::Muon::setHwEtaAtVtx(), l1t::L1Candidate::setHwPhi(), and l1t::Muon::setHwPhiAtVtx().

Referenced by fillMuon().

104  {
105  // coordinates at the muon system
106  mu.setHwEta(calcHwEta(raw_data_32_63, absEtaShift_, etaSignShift_));
107  mu.setHwPhi((raw_data_32_63 >> phiShift_) & phiMask_);
108 
109  // coordinates at the vertex
110  mu.setHwEtaAtVtx(calcHwEta(raw_data_00_31, absEtaAtVtxShift_, etaAtVtxSignShift_));
111  mu.setHwPhiAtVtx((raw_data_00_31 >> phiAtVtxShift_) & phiMask_);
112  // deltas
113  mu.setHwDEtaExtra(mu.hwEtaAtVtx() - mu.hwEta());
114  int dPhi = mu.hwPhiAtVtx() - mu.hwPhi();
115  if (mu.hwCharge() == 1 && dPhi > 0) {
116  dPhi -= 576;
117  } else if (mu.hwCharge() == 0 && dPhi < 0) {
118  dPhi += 576;
119  }
120  mu.setHwDPhiExtra(dPhi);
121 }
static int calcHwEta(const uint32_t &raw, const unsigned absEtaShift, const unsigned etaSignShift)
static constexpr unsigned absEtaAtVtxShift_
static constexpr unsigned etaAtVtxSignShift_
const int mu
Definition: Constants.h:22
static constexpr unsigned phiAtVtxShift_
static constexpr unsigned etaSignShift_
static constexpr unsigned phiShift_
static constexpr unsigned phiMask_
static constexpr unsigned absEtaShift_
void l1t::MuonRawDigiTranslator::fillMuonQuantitiesRun3 ( Muon mu,
uint32_t  raw_data_spare,
uint32_t  raw_data_00_31,
uint32_t  raw_data_32_63,
int  muInBx,
bool  wasSpecialMWGR = false 
)
staticprivate

Definition at line 123 of file MuonRawDigiTranslator.cc.

References l1t::Muon::hwCharge(), l1t::L1Candidate::hwEta(), l1t::Muon::hwEtaAtVtx(), l1t::L1Candidate::hwPhi(), l1t::Muon::hwPhiAtVtx(), l1t::Muon::setHwDEtaExtra(), l1t::Muon::setHwDPhiExtra(), l1t::Muon::setHwDXY(), l1t::L1Candidate::setHwEta(), l1t::Muon::setHwEtaAtVtx(), l1t::L1Candidate::setHwPhi(), l1t::Muon::setHwPhiAtVtx(), and l1t::Muon::setHwPtUnconstrained().

Referenced by fillMuon().

128  {
129  unsigned absEtaMu1Shift{absEtaMu1Shift_};
130  unsigned etaMu1SignShift{etaMu1SignShift_};
131  unsigned absEtaMu2Shift{absEtaMu2Shift_};
132  unsigned etaMu2SignShift{etaMu2SignShift_};
133 
134  // Adjust if we're unpacking data from the November 2020 MWGR.
135  if (wasSpecialMWGR) {
136  --absEtaMu1Shift;
137  --etaMu1SignShift;
138  --absEtaMu2Shift;
139  --etaMu2SignShift;
140  }
141  // coordinates at the muon system
142  // Where to find the raw eta depends on which muon we're looking at
143  if (muInBx == 1) {
144  mu.setHwEta(calcHwEta(raw_data_spare, absEtaMu1Shift, etaMu1SignShift));
145  } else if (muInBx == 2) {
146  mu.setHwEta(calcHwEta(raw_data_spare, absEtaMu2Shift, etaMu2SignShift));
147  } else {
148  edm::LogWarning("L1T") << "Received invalid muon id " << muInBx << ". Cannot fill eta value in the muon system.";
149  }
150  mu.setHwPhi((raw_data_32_63 >> phiShift_) & phiMask_);
151 
152  // coordinates at the vertex
153  mu.setHwEtaAtVtx(calcHwEta(raw_data_00_31, absEtaAtVtxShift_, etaAtVtxSignShift_));
154  mu.setHwPhiAtVtx((raw_data_00_31 >> phiAtVtxShift_) & phiMask_);
155  // deltas
156  mu.setHwDEtaExtra(mu.hwEtaAtVtx() - mu.hwEta());
157  int dPhi = mu.hwPhiAtVtx() - mu.hwPhi();
158  if (mu.hwCharge() == 1 && dPhi > 0) {
159  dPhi -= 576;
160  } else if (mu.hwCharge() == 0 && dPhi < 0) {
161  dPhi += 576;
162  }
163  mu.setHwDPhiExtra(dPhi);
164 
165  // displacement information
166  mu.setHwDXY((raw_data_32_63 >> dxyShift_) & dxyMask_);
167  mu.setHwPtUnconstrained((raw_data_32_63 >> ptUnconstrainedShift_) & ptUnconstrainedMask_);
168 }
static int calcHwEta(const uint32_t &raw, const unsigned absEtaShift, const unsigned etaSignShift)
static constexpr unsigned dxyMask_
static constexpr unsigned absEtaAtVtxShift_
static constexpr unsigned etaMu2SignShift_
static constexpr unsigned ptUnconstrainedMask_
static constexpr unsigned etaMu1SignShift_
static constexpr unsigned absEtaMu1Shift_
static constexpr unsigned etaAtVtxSignShift_
const int mu
Definition: Constants.h:22
static constexpr unsigned phiAtVtxShift_
static constexpr unsigned dxyShift_
static constexpr unsigned phiShift_
static constexpr unsigned phiMask_
static constexpr unsigned absEtaMu2Shift_
Log< level::Warning, false > LogWarning
static constexpr unsigned ptUnconstrainedShift_
void l1t::MuonRawDigiTranslator::fillMuonStableQuantities ( Muon mu,
uint32_t  raw_data_00_31,
uint32_t  raw_data_32_63 
)
staticprivate

Definition at line 55 of file MuonRawDigiTranslator.cc.

References reco::LeafCandidate::eta(), l1t::Muon::hwCharge(), l1t::Muon::hwChargeValid(), l1t::L1Candidate::hwEta(), l1t::Muon::hwEtaAtVtx(), l1t::L1Candidate::hwPhi(), l1t::Muon::hwPhiAtVtx(), l1t::L1Candidate::hwPt(), l1t::Muon::hwPtUnconstrained(), reco::LeafCandidate::phi(), reco::LeafCandidate::setCharge(), l1t::Muon::setEtaAtVtx(), l1t::Muon::setHwChargeValid(), l1t::L1Candidate::setHwIso(), l1t::L1Candidate::setHwPt(), l1t::L1Candidate::setHwQual(), reco::LeafCandidate::setP4(), l1t::Muon::setPhiAtVtx(), l1t::Muon::setPtUnconstrained(), and l1t::Muon::setTfMuonIndex().

Referenced by fillMuon().

55  {
56  mu.setHwPt((raw_data_00_31 >> ptShift_) & ptMask_);
57  mu.setHwQual((raw_data_00_31 >> qualShift_) & qualMask_);
58  mu.setHwIso((raw_data_32_63 >> isoShift_) & isoMask_);
59  // charge is coded as -1^chargeBit
60  mu.setHwChargeValid((raw_data_32_63 >> chargeValidShift_) & 0x1);
61  mu.setTfMuonIndex((raw_data_32_63 >> tfMuonIndexShift_) & tfMuonIndexMask_);
62  if (mu.hwChargeValid()) {
63  mu.setCharge(1 - 2 * mu.hwCharge());
64  } else {
65  mu.setCharge(0);
66  }
67 
68  math::PtEtaPhiMLorentzVector vec{(mu.hwPt() - 1) * 0.5, mu.hwEta() * 0.010875, mu.hwPhi() * 0.010908, 0.0};
69  mu.setP4(vec);
70  // generate a muon at the vertex to extract the physical eta and phi coordinates
72  (mu.hwPt() - 1) * 0.5, mu.hwEtaAtVtx() * 0.010875, mu.hwPhiAtVtx() * 0.010908, 0.0};
73  Muon muAtVtx;
74  muAtVtx.setP4(vecAtVtx);
75  mu.setEtaAtVtx(muAtVtx.eta());
76  mu.setPhiAtVtx(muAtVtx.phi());
77 
78  int hwPtUnconstrained{mu.hwPtUnconstrained()};
79  mu.setPtUnconstrained(
80  hwPtUnconstrained == 0 ? 0 : (hwPtUnconstrained - 1)); // Don't want negative pT, unconstr. pT has LSB of 1 GeV.
81 }
static constexpr unsigned tfMuonIndexShift_
static constexpr unsigned isoShift_
static constexpr unsigned qualMask_
static constexpr unsigned isoMask_
static constexpr unsigned qualShift_
PtEtaPhiMLorentzVectorD PtEtaPhiMLorentzVector
Lorentz vector with cartesian internal representation.
Definition: LorentzVector.h:25
const int mu
Definition: Constants.h:22
static constexpr unsigned chargeValidShift_
static constexpr unsigned ptShift_
static constexpr unsigned ptMask_
static constexpr unsigned tfMuonIndexMask_
void l1t::MuonRawDigiTranslator::generate64bitDataWord ( const Muon mu,
uint32_t &  raw_data_spare,
uint64_t &  dataword,
int  fedId,
int  fwId,
int  muInBx 
)
static

Definition at line 257 of file MuonRawDigiTranslator.cc.

258  {
259  uint32_t lsw;
260  uint32_t msw;
261 
262  generatePackedDataWords(mu, raw_data_spare, lsw, msw, fedId, fwId, muInBx);
263  dataword = (((uint64_t)msw) << 32) + lsw;
264 }
static void generatePackedDataWords(const Muon &mu, uint32_t &raw_data_spare, uint32_t &raw_data_00_31, uint32_t &raw_data_32_63, int fedId, int fwId, int muInBx)
const int mu
Definition: Constants.h:22
unsigned long long uint64_t
Definition: Time.h:13
void l1t::MuonRawDigiTranslator::generatePackedDataWords ( const Muon mu,
uint32_t &  raw_data_spare,
uint32_t &  raw_data_00_31,
uint32_t &  raw_data_32_63,
int  fedId,
int  fwId,
int  muInBx 
)
static

Definition at line 180 of file MuonRawDigiTranslator.cc.

References l1t::Muon::hwCharge(), l1t::Muon::hwChargeValid(), l1t::L1Candidate::hwEta(), l1t::Muon::hwEtaAtVtx(), l1t::L1Candidate::hwIso(), l1t::L1Candidate::hwPhi(), l1t::Muon::hwPhiAtVtx(), l1t::L1Candidate::hwPt(), l1t::L1Candidate::hwQual(), and l1t::Muon::tfMuonIndex().

Referenced by l1t::stage2::MuonPacker::packBx().

186  {
187  int abs_eta = mu.hwEta();
188  if (abs_eta < 0) {
189  abs_eta += (1 << (etaSignShift_ - absEtaShift_));
190  }
191  int abs_eta_at_vtx = mu.hwEtaAtVtx();
192  if (abs_eta_at_vtx < 0) {
193  abs_eta_at_vtx += (1 << (etaAtVtxSignShift_ - absEtaAtVtxShift_));
194  }
195  if ((fedID == 1402 && fwID < 0x4010000) || (fedID == 1404 && fwID < 0x10A6)) {
196  // For 2016 the non-extrapolated coordiantes were in the place that are now occupied by the extrapolated quantities.
197  raw_data_spare = 0;
198  raw_data_00_31 = (mu.hwPt() & ptMask_) << ptShift_ | (mu.hwQual() & qualMask_) << qualShift_ |
199  (abs_eta & absEtaMask_) << absEtaAtVtxShift_ | (mu.hwEta() < 0) << etaAtVtxSignShift_ |
200  (mu.hwPhi() & phiMask_) << phiAtVtxShift_;
201  raw_data_32_63 = mu.hwCharge() << chargeShift_ | mu.hwChargeValid() << chargeValidShift_ |
202  (mu.tfMuonIndex() & tfMuonIndexMask_) << tfMuonIndexShift_ | (mu.hwIso() & isoMask_) << isoShift_;
203  } else if ((fedID == 1402 && fwID < 0x6000000) || (fedID == 1404 && fwID < 0x1120)) {
204  raw_data_spare = 0;
205  raw_data_00_31 = (mu.hwPt() & ptMask_) << ptShift_ | (mu.hwQual() & qualMask_) << qualShift_ |
206  (abs_eta_at_vtx & absEtaMask_) << absEtaAtVtxShift_ | (mu.hwEtaAtVtx() < 0) << etaAtVtxSignShift_ |
207  (mu.hwPhiAtVtx() & phiMask_) << phiAtVtxShift_;
208 
209  raw_data_32_63 = mu.hwCharge() << chargeShift_ | mu.hwChargeValid() << chargeValidShift_ |
210  (mu.tfMuonIndex() & tfMuonIndexMask_) << tfMuonIndexShift_ | (mu.hwIso() & isoMask_) << isoShift_ |
211  (abs_eta & absEtaMask_) << absEtaShift_ | (mu.hwEta() < 0) << etaSignShift_ |
212  (mu.hwPhi() & phiMask_) << phiShift_;
213  } else if ((fedID == 1402 && fwID == 0x6000001) ||
214  (fedID == 1404 && fwID < 0x1130)) { // This allows us to unpack data taken in the November 2020 MWGR.
216  mu, abs_eta, abs_eta_at_vtx, raw_data_spare, raw_data_00_31, raw_data_32_63, muInBx, true);
217  } else {
219  mu, abs_eta, abs_eta_at_vtx, raw_data_spare, raw_data_00_31, raw_data_32_63, muInBx, false);
220  }
221 }
static constexpr unsigned tfMuonIndexShift_
static constexpr unsigned isoShift_
static constexpr unsigned absEtaAtVtxShift_
static constexpr unsigned qualMask_
static constexpr unsigned isoMask_
static constexpr unsigned qualShift_
static constexpr unsigned etaAtVtxSignShift_
const int mu
Definition: Constants.h:22
static constexpr unsigned chargeValidShift_
static constexpr unsigned phiAtVtxShift_
static constexpr unsigned ptShift_
static void generatePackedDataWordsRun3(const Muon &mu, int abs_eta, int abs_eta_at_vtx, uint32_t &raw_data_spare, uint32_t &raw_data_00_31, uint32_t &raw_data_32_63, int muInBx, bool wasSpecialMWGR=false)
static constexpr unsigned chargeShift_
static constexpr unsigned etaSignShift_
static constexpr unsigned phiShift_
static constexpr unsigned phiMask_
static constexpr unsigned absEtaShift_
static constexpr unsigned absEtaMask_
static constexpr unsigned ptMask_
static constexpr unsigned tfMuonIndexMask_
void l1t::MuonRawDigiTranslator::generatePackedDataWordsRun3 ( const Muon mu,
int  abs_eta,
int  abs_eta_at_vtx,
uint32_t &  raw_data_spare,
uint32_t &  raw_data_00_31,
uint32_t &  raw_data_32_63,
int  muInBx,
bool  wasSpecialMWGR = false 
)
staticprivate

Definition at line 223 of file MuonRawDigiTranslator.cc.

References l1t::Muon::hwCharge(), l1t::Muon::hwChargeValid(), l1t::Muon::hwDXY(), l1t::L1Candidate::hwEta(), l1t::Muon::hwEtaAtVtx(), l1t::L1Candidate::hwIso(), l1t::L1Candidate::hwPhi(), l1t::Muon::hwPhiAtVtx(), l1t::L1Candidate::hwPt(), l1t::Muon::hwPtUnconstrained(), l1t::L1Candidate::hwQual(), and l1t::Muon::tfMuonIndex().

230  {
231  int absEtaShiftRun3{0}, etaSignShiftRun3{0};
232  if (muInBx == 1) {
233  absEtaShiftRun3 = absEtaMu1Shift_;
234  etaSignShiftRun3 = etaMu1SignShift_;
235  } else if (muInBx == 2) {
236  absEtaShiftRun3 = absEtaMu2Shift_;
237  etaSignShiftRun3 = etaMu2SignShift_;
238  }
239 
240  // Adjust if we're packing the November 2020 MWGR
241  if (wasSpecialMWGR && (muInBx == 1 || muInBx == 2)) {
242  --absEtaShiftRun3;
243  --etaSignShiftRun3;
244  }
245 
246  raw_data_spare = (abs_eta & absEtaMask_) << absEtaShiftRun3 | (mu.hwEta() < 0) << etaSignShiftRun3;
247  raw_data_00_31 = (mu.hwPt() & ptMask_) << ptShift_ | (mu.hwQual() & qualMask_) << qualShift_ |
248  (abs_eta_at_vtx & absEtaMask_) << absEtaAtVtxShift_ | (mu.hwEtaAtVtx() < 0) << etaAtVtxSignShift_ |
249  (mu.hwPhiAtVtx() & phiMask_) << phiAtVtxShift_;
250  raw_data_32_63 = mu.hwCharge() << chargeShift_ | mu.hwChargeValid() << chargeValidShift_ |
251  (mu.tfMuonIndex() & tfMuonIndexMask_) << tfMuonIndexShift_ | (mu.hwIso() & isoMask_) << isoShift_ |
252  (mu.hwPhi() & phiMask_) << phiShift_ |
253  (mu.hwPtUnconstrained() & ptUnconstrainedMask_) << ptUnconstrainedShift_ |
254  (mu.hwDXY() & dxyMask_) << dxyShift_;
255 }
static constexpr unsigned dxyMask_
static constexpr unsigned tfMuonIndexShift_
static constexpr unsigned isoShift_
static constexpr unsigned absEtaAtVtxShift_
static constexpr unsigned qualMask_
static constexpr unsigned isoMask_
static constexpr unsigned qualShift_
static constexpr unsigned etaMu2SignShift_
static constexpr unsigned ptUnconstrainedMask_
static constexpr unsigned etaMu1SignShift_
static constexpr unsigned absEtaMu1Shift_
static constexpr unsigned etaAtVtxSignShift_
const int mu
Definition: Constants.h:22
static constexpr unsigned chargeValidShift_
static constexpr unsigned phiAtVtxShift_
static constexpr unsigned ptShift_
static constexpr unsigned chargeShift_
static constexpr unsigned dxyShift_
static constexpr unsigned phiShift_
static constexpr unsigned phiMask_
static constexpr unsigned absEtaMu2Shift_
static constexpr unsigned absEtaMask_
static constexpr unsigned ptUnconstrainedShift_
static constexpr unsigned ptMask_
static constexpr unsigned tfMuonIndexMask_

Member Data Documentation

constexpr unsigned l1t::MuonRawDigiTranslator::absEtaAtVtxShift_ = 23
static

Definition at line 35 of file MuonRawDigiTranslator.h.

constexpr unsigned l1t::MuonRawDigiTranslator::absEtaMask_ = 0xFF
static

Definition at line 33 of file MuonRawDigiTranslator.h.

constexpr unsigned l1t::MuonRawDigiTranslator::absEtaMu1Shift_ = 13
static

Definition at line 52 of file MuonRawDigiTranslator.h.

constexpr unsigned l1t::MuonRawDigiTranslator::absEtaMu2Shift_ = 22
static

Definition at line 54 of file MuonRawDigiTranslator.h.

constexpr unsigned l1t::MuonRawDigiTranslator::absEtaShift_ = 21
static

Definition at line 34 of file MuonRawDigiTranslator.h.

constexpr unsigned l1t::MuonRawDigiTranslator::chargeShift_ = 2
static

Definition at line 41 of file MuonRawDigiTranslator.h.

Referenced by fillMuon().

constexpr unsigned l1t::MuonRawDigiTranslator::chargeValidShift_ = 3
static

Definition at line 42 of file MuonRawDigiTranslator.h.

constexpr unsigned l1t::MuonRawDigiTranslator::dxyMask_ = 0x3
static

Definition at line 47 of file MuonRawDigiTranslator.h.

constexpr unsigned l1t::MuonRawDigiTranslator::dxyShift_ = 30
static

Definition at line 48 of file MuonRawDigiTranslator.h.

constexpr unsigned l1t::MuonRawDigiTranslator::etaAtVtxSignShift_ = 31
static

Definition at line 37 of file MuonRawDigiTranslator.h.

constexpr unsigned l1t::MuonRawDigiTranslator::etaMu1SignShift_ = 21
static

Definition at line 53 of file MuonRawDigiTranslator.h.

constexpr unsigned l1t::MuonRawDigiTranslator::etaMu2SignShift_ = 30
static

Definition at line 55 of file MuonRawDigiTranslator.h.

constexpr unsigned l1t::MuonRawDigiTranslator::etaSignShift_ = 29
static

Definition at line 36 of file MuonRawDigiTranslator.h.

constexpr unsigned l1t::MuonRawDigiTranslator::isoMask_ = 0x3
static

Definition at line 45 of file MuonRawDigiTranslator.h.

constexpr unsigned l1t::MuonRawDigiTranslator::isoShift_ = 0
static

Definition at line 46 of file MuonRawDigiTranslator.h.

constexpr unsigned l1t::MuonRawDigiTranslator::phiAtVtxShift_ = 0
static

Definition at line 40 of file MuonRawDigiTranslator.h.

constexpr unsigned l1t::MuonRawDigiTranslator::phiMask_ = 0x3FF
static

Definition at line 38 of file MuonRawDigiTranslator.h.

constexpr unsigned l1t::MuonRawDigiTranslator::phiShift_ = 11
static

Definition at line 39 of file MuonRawDigiTranslator.h.

constexpr unsigned l1t::MuonRawDigiTranslator::ptMask_ = 0x1FF
static
constexpr unsigned l1t::MuonRawDigiTranslator::ptShift_ = 10
static
constexpr unsigned l1t::MuonRawDigiTranslator::ptUnconstrainedIntermedidateShift_ = 0
static

Definition at line 51 of file MuonRawDigiTranslator.h.

constexpr unsigned l1t::MuonRawDigiTranslator::ptUnconstrainedMask_ = 0xFF
static

Definition at line 49 of file MuonRawDigiTranslator.h.

constexpr unsigned l1t::MuonRawDigiTranslator::ptUnconstrainedShift_ = 21
static

Definition at line 50 of file MuonRawDigiTranslator.h.

constexpr unsigned l1t::MuonRawDigiTranslator::qualMask_ = 0xF
static

Definition at line 31 of file MuonRawDigiTranslator.h.

constexpr unsigned l1t::MuonRawDigiTranslator::qualShift_ = 19
static

Definition at line 32 of file MuonRawDigiTranslator.h.

constexpr unsigned l1t::MuonRawDigiTranslator::tfMuonIndexMask_ = 0x7F
static

Definition at line 43 of file MuonRawDigiTranslator.h.

constexpr unsigned l1t::MuonRawDigiTranslator::tfMuonIndexShift_ = 4
static

Definition at line 44 of file MuonRawDigiTranslator.h.