CMS 3D CMS Logo

RegionalMuonRawDigiTranslator.cc
Go to the documentation of this file.
3 
5  const uint32_t raw_data_00_31,
6  const uint32_t raw_data_32_63,
7  const int proc,
8  const tftype tf,
9  const bool isKbmtf,
10  const bool useOmtfDisplacementInfo,
11  const bool useEmtfDisplacementInfo) {
12  // translations as defined in DN-15-017
13  mu.setHwPt((raw_data_00_31 >> ptShift_) & ptMask_);
14  mu.setHwQual((raw_data_00_31 >> qualShift_) & qualMask_);
15 
16  // eta is coded as two's complement
17  int abs_eta = (raw_data_00_31 >> absEtaShift_) & absEtaMask_;
18  if ((raw_data_00_31 >> etaSignShift_) & 0x1) {
19  mu.setHwEta(abs_eta - (1 << (etaSignShift_ - absEtaShift_)));
20  } else {
21  mu.setHwEta(abs_eta);
22  }
23 
24  // phi is coded as two's complement
25  int abs_phi = (raw_data_00_31 >> absPhiShift_) & absPhiMask_;
26  if ((raw_data_00_31 >> phiSignShift_) & 0x1) {
27  mu.setHwPhi(abs_phi - (1 << (phiSignShift_ - absPhiShift_)));
28  } else {
29  mu.setHwPhi(abs_phi);
30  }
31 
32  // sign is coded as -1^signBit
33  mu.setHwSign((raw_data_32_63 >> signShift_) & 0x1);
34  mu.setHwSignValid((raw_data_32_63 >> signValidShift_) & 0x1);
35  mu.setHwHF((raw_data_00_31 >> hfShift_) & hfMask_);
36 
37  // set track address with subaddresses
38  int rawTrackAddress = (raw_data_32_63 >> trackAddressShift_) & trackAddressMask_;
39  if (tf == bmtf) {
40  int detSide = (rawTrackAddress >> bmtfTrAddrDetSideShift_) & 0x1;
41  int wheelNum = (rawTrackAddress >> bmtfTrAddrWheelShift_) & bmtfTrAddrWheelMask_;
42  int statAddr1 = ((rawTrackAddress >> bmtfTrAddrStat1Shift_) & bmtfTrAddrStat1Mask_);
43  int statAddr2 = ((rawTrackAddress >> bmtfTrAddrStat2Shift_) & bmtfTrAddrStat2Mask_);
44  int statAddr3 = ((rawTrackAddress >> bmtfTrAddrStat3Shift_) & bmtfTrAddrStat3Mask_);
45  int statAddr4 = ((rawTrackAddress >> bmtfTrAddrStat4Shift_) & bmtfTrAddrStat4Mask_);
46 
47  mu.setTrackSubAddress(RegionalMuonCand::kWheelSide, detSide);
48  mu.setTrackSubAddress(RegionalMuonCand::kWheelNum, wheelNum);
49  if (!isKbmtf) { // The Run-2 standard configuration for BMTF
50  mu.setTrackSubAddress(RegionalMuonCand::kStat1, statAddr1);
51  mu.setTrackSubAddress(RegionalMuonCand::kStat2, statAddr2);
52  mu.setTrackSubAddress(RegionalMuonCand::kStat3, statAddr3);
53  mu.setTrackSubAddress(RegionalMuonCand::kStat4, statAddr4);
54  } else {
55  // For Run-3 track address encoding has changed as the Kalman Filter tracks from outside in.
56  // As a result station assignment is inverted
57  // (i.e. the field that contained the station 1 information for Run-2 now contains station 4 information and so on.)
58  mu.setTrackSubAddress(RegionalMuonCand::kStat1, statAddr4);
59  mu.setTrackSubAddress(RegionalMuonCand::kStat2, statAddr3);
60  mu.setTrackSubAddress(RegionalMuonCand::kStat3, statAddr2);
61  mu.setTrackSubAddress(RegionalMuonCand::kStat4, statAddr1);
62  // Additionally we now have displacement information from the BMTF
63  mu.setHwPtUnconstrained((raw_data_32_63 >> bmtfPtUnconstrainedShift_) & ptUnconstrainedMask_);
64  mu.setHwDXY((raw_data_32_63 >> bmtfDxyShift_) & dxyMask_);
65  }
66  mu.setTrackSubAddress(RegionalMuonCand::kSegSelStat1, 0);
67  mu.setTrackSubAddress(RegionalMuonCand::kSegSelStat2, 0);
68  mu.setTrackSubAddress(RegionalMuonCand::kSegSelStat3, 0);
69  mu.setTrackSubAddress(RegionalMuonCand::kSegSelStat4, 0);
70  //mu.setTrackSubAddress(RegionalMuonCand::kNumBmtfSubAddr, 0);
71  } else if (tf == emtf_neg || tf == emtf_pos) {
72  mu.setTrackSubAddress(RegionalMuonCand::kME1Seg, (rawTrackAddress >> emtfTrAddrMe1SegShift_) & 0x1);
73  mu.setTrackSubAddress(RegionalMuonCand::kME1Ch, (rawTrackAddress >> emtfTrAddrMe1ChShift_) & emtfTrAddrMe1ChMask_);
74  mu.setTrackSubAddress(RegionalMuonCand::kME2Seg, (rawTrackAddress >> emtfTrAddrMe2SegShift_) & 0x1);
75  mu.setTrackSubAddress(RegionalMuonCand::kME2Ch, (rawTrackAddress >> emtfTrAddrMe2ChShift_) & emtfTrAddrMe2ChMask_);
76  mu.setTrackSubAddress(RegionalMuonCand::kME3Seg, (rawTrackAddress >> emtfTrAddrMe3SegShift_) & 0x1);
77  mu.setTrackSubAddress(RegionalMuonCand::kME3Ch, (rawTrackAddress >> emtfTrAddrMe3ChShift_) & emtfTrAddrMe3ChMask_);
78  mu.setTrackSubAddress(RegionalMuonCand::kME4Seg, (rawTrackAddress >> emtfTrAddrMe4SegShift_) & 0x1);
79  mu.setTrackSubAddress(RegionalMuonCand::kME4Ch, (rawTrackAddress >> emtfTrAddrMe4ChShift_) & emtfTrAddrMe4ChMask_);
80  if (useEmtfDisplacementInfo) { // In Run-3 we receive displaced muon information from EMTF
81  mu.setHwPtUnconstrained((raw_data_32_63 >> emtfPtUnconstrainedShift_) & ptUnconstrainedMask_);
82  mu.setHwDXY((raw_data_32_63 >> emtfDxyShift_) & dxyMask_);
83  mu.setTrackSubAddress(RegionalMuonCand::kTrkNum, 0);
84  mu.setTrackSubAddress(RegionalMuonCand::kBX, 0);
85  } else {
86  mu.setTrackSubAddress(RegionalMuonCand::kTrkNum,
87  (rawTrackAddress >> emtfTrAddrTrkNumShift_) & emtfTrAddrTrkNumMask_);
88  mu.setTrackSubAddress(RegionalMuonCand::kBX, (rawTrackAddress >> emtfTrAddrBxShift_) & emtfTrAddrBxMask_);
89  }
90  } else if (tf == omtf_neg || tf == omtf_pos) {
91  if (useOmtfDisplacementInfo) { // In Run-3 2024 we receive displaced muon information from OMTF
92  mu.setHwPtUnconstrained((raw_data_32_63 >> kOmtfPtUnconstrainedShift_) & ptUnconstrainedMask_);
93  }
94  mu.setTrackSubAddress(RegionalMuonCand::kLayers,
95  (rawTrackAddress >> omtfTrAddrLayersShift_) & omtfTrAddrLayersMask_);
96  mu.setTrackSubAddress(RegionalMuonCand::kZero, 0);
97  mu.setTrackSubAddress(RegionalMuonCand::kWeight,
98  (rawTrackAddress >> omtfTrAddrWeightShift_) & omtfTrAddrWeightMask_);
99  } else {
100  std::map<int, int> trackAddr;
101  trackAddr[0] = rawTrackAddress;
102  mu.setTrackAddress(trackAddr);
103  }
104 
105  mu.setTFIdentifiers(proc, tf);
106  mu.setDataword(raw_data_32_63, raw_data_00_31);
107 }
108 
110  const uint64_t dataword,
111  const int proc,
112  const tftype tf,
113  const bool isKbmtf,
114  const bool useOmtfDisplacementInfo,
115  const bool useEmtfDisplacementInfo) {
116  fillRegionalMuonCand(mu,
117  (uint32_t)(dataword & 0xFFFFFFFF),
118  (uint32_t)((dataword >> 32) & 0xFFFFFFFF),
119  proc,
120  tf,
121  isKbmtf,
122  useOmtfDisplacementInfo,
123  useEmtfDisplacementInfo);
124 }
125 
127  const std::vector<uint32_t> bxPayload,
128  const int proc,
129  const tftype tf,
130  const bool useEmtfNominalTightShowers,
131  const bool useEmtfLooseShowers) {
132  muShower.setTFIdentifiers(proc, tf);
133  bool showerValid{false};
134  if (useEmtfNominalTightShowers && (tf == emtf_pos || tf == emtf_neg)) {
135  muShower.setOneNominalInTime(((bxPayload[kEmtfShowerStandardFrame] >> kEmtfShowerOneNominalShift) & 1) == 1);
136  muShower.setOneTightInTime(((bxPayload[kEmtfShowerStandardFrame] >> kEmtfShowerOneTightShift) & 1) == 1);
137 
138  showerValid = muShower.isValid();
139  }
140  if (useEmtfLooseShowers && (tf == emtf_pos || tf == emtf_neg)) {
141  muShower.setOneLooseInTime(((bxPayload[kEmtfShowerExtendedFrame] >> kEmtfShowerOneLooseShift) & 1) == 1);
142 
143  showerValid = muShower.isValid();
144  }
145  return showerValid;
146 }
147 
149  std::array<uint32_t, 6>& payload,
150  const bool useEmtfNominalTightShowers,
151  const bool useEmtfLooseShowers) {
152  if (!useEmtfNominalTightShowers || !useEmtfLooseShowers || !shower.isValid()) {
153  return;
154  }
155  // First we check whether we're going to overwrite something in the payload.
156  if ((((payload.at(kEmtfShowerStandardFrame) >> kEmtfShowerOneNominalShift) & kEmtfShowerMask) != 0) ||
157  (((payload.at(kEmtfShowerStandardFrame) >> kEmtfShowerOneTightShift) & kEmtfShowerMask) != 0) ||
158  (((payload.at(kEmtfShowerExtendedFrame) >> kEmtfShowerOneLooseShift) & kEmtfShowerMask) != 0)) {
159  edm::LogError("L1T") << "Check constants for RegionalMuonShower fields! It looks like we're in danger of "
160  "overwriting muon data in the packer! StandardFrame is "
161  << payload.at(kEmtfShowerStandardFrame) << ", ExtendedFrame is "
162  << payload.at(kEmtfShowerExtendedFrame);
163  return;
164  }
165  payload.at(kEmtfShowerStandardFrame) |= (shower.isOneNominalInTime() & 1) << kEmtfShowerOneNominalShift |
166  (shower.isOneTightInTime() & 1) << kEmtfShowerOneTightShift;
167  payload.at(kEmtfShowerExtendedFrame) |= (shower.isOneNominalOutOfTime() & 1) << kEmtfShowerOneNominalShift |
168  (shower.isOneTightOutOfTime() & 1) << kEmtfShowerOneTightShift;
169 }
170 
172  uint32_t& raw_data_00_31,
173  uint32_t& raw_data_32_63,
174  const bool isKbmtf,
175  const bool useOmtfDisplacementInfo,
176  const bool useEmtfDisplacementInfo) {
177  int abs_eta = mu.hwEta();
178  if (abs_eta < 0) {
179  abs_eta += (1 << (etaSignShift_ - absEtaShift_));
180  }
181  int abs_phi = mu.hwPhi();
182  if (abs_phi < 0) {
183  abs_phi += (1 << (phiSignShift_ - absPhiShift_));
184  }
185  raw_data_00_31 = (mu.hwPt() & ptMask_) << ptShift_ | (mu.hwQual() & qualMask_) << qualShift_ |
186  (abs_eta & absEtaMask_) << absEtaShift_ | (mu.hwEta() < 0) << etaSignShift_ |
187  (mu.hwHF() & hfMask_) << hfShift_ | (abs_phi & absPhiMask_) << absPhiShift_ |
188  (mu.hwPhi() < 0) << phiSignShift_;
189 
190  // generate the raw track address from the subaddresses
191  int rawTrkAddr = generateRawTrkAddress(mu, isKbmtf);
192 
193  raw_data_32_63 = mu.hwSign() << signShift_ | mu.hwSignValid() << signValidShift_ |
194  (rawTrkAddr & trackAddressMask_) << trackAddressShift_;
195  if (isKbmtf && mu.trackFinderType() == bmtf) {
196  raw_data_32_63 |= (mu.hwPtUnconstrained() & ptUnconstrainedMask_) << bmtfPtUnconstrainedShift_ |
197  (mu.hwDXY() & dxyMask_) << bmtfDxyShift_;
198  } else if (useOmtfDisplacementInfo && (mu.trackFinderType() == omtf_pos || mu.trackFinderType() == omtf_neg)) {
199  raw_data_32_63 |= (mu.hwPtUnconstrained() & ptUnconstrainedMask_) << kOmtfPtUnconstrainedShift_;
200  } else if (useEmtfDisplacementInfo && (mu.trackFinderType() == emtf_pos || mu.trackFinderType() == emtf_neg)) {
201  raw_data_32_63 |= (mu.hwPtUnconstrained() & ptUnconstrainedMask_) << emtfPtUnconstrainedShift_ |
202  (mu.hwDXY() & dxyMask_) << emtfDxyShift_;
203  }
204 }
205 
207  const bool isKbmtf,
208  const bool useOmtfDisplacementInfo,
209  const bool useEmtfDisplacementInfo) {
210  uint32_t lsw;
211  uint32_t msw;
212 
213  generatePackedDataWords(mu, lsw, msw, isKbmtf, useOmtfDisplacementInfo, useEmtfDisplacementInfo);
214  return (((uint64_t)msw) << 32) + lsw;
215 }
216 
218  int tf = mu.trackFinderType();
219  int rawTrkAddr = 0;
220  if (tf == bmtf) {
221  // protection against a track address map with the wrong size
222  if (mu.trackAddress().size() == RegionalMuonCand::kNumBmtfSubAddr) {
223  int detSide = mu.trackSubAddress(RegionalMuonCand::kWheelSide);
224  int wheelNum = mu.trackSubAddress(RegionalMuonCand::kWheelNum);
225  int stat1 = mu.trackSubAddress(RegionalMuonCand::kStat1);
226  int stat2 = mu.trackSubAddress(RegionalMuonCand::kStat2);
227  int stat3 = mu.trackSubAddress(RegionalMuonCand::kStat3);
228  int stat4 = mu.trackSubAddress(RegionalMuonCand::kStat4);
229  if (isKalman) {
230  stat1 = mu.trackSubAddress(RegionalMuonCand::kStat4);
231  stat2 = mu.trackSubAddress(RegionalMuonCand::kStat3);
232  stat3 = mu.trackSubAddress(RegionalMuonCand::kStat2);
233  stat4 = mu.trackSubAddress(RegionalMuonCand::kStat1);
234  }
235 
236  rawTrkAddr = (detSide & 0x1) << bmtfTrAddrDetSideShift_ |
237  (wheelNum & bmtfTrAddrWheelMask_) << bmtfTrAddrWheelShift_ |
238  (stat1 & bmtfTrAddrStat1Mask_) << bmtfTrAddrStat1Shift_ |
239  (stat2 & bmtfTrAddrStat2Mask_) << bmtfTrAddrStat2Shift_ |
240  (stat3 & bmtfTrAddrStat3Mask_) << bmtfTrAddrStat3Shift_ |
241  (stat4 & bmtfTrAddrStat4Mask_) << bmtfTrAddrStat4Shift_;
242  } else {
243  edm::LogWarning("L1T") << "BMTF muon track address map contains " << mu.trackAddress().size()
244  << " instead of the expected " << RegionalMuonCand::kNumBmtfSubAddr
245  << " subaddresses. Check the data format. Setting track address to 0.";
246  rawTrkAddr = 0;
247  }
248  } else if (tf == emtf_neg || tf == emtf_pos) {
249  // protection against a track address map with the wrong size
250  if (mu.trackAddress().size() == RegionalMuonCand::kNumEmtfSubAddr) {
251  rawTrkAddr = (mu.trackSubAddress(RegionalMuonCand::kME1Seg) & 0x1) << emtfTrAddrMe1SegShift_ |
252  (mu.trackSubAddress(RegionalMuonCand::kME1Ch) & emtfTrAddrMe1ChMask_) << emtfTrAddrMe1ChShift_ |
253  (mu.trackSubAddress(RegionalMuonCand::kME2Seg) & 0x1) << emtfTrAddrMe2SegShift_ |
254  (mu.trackSubAddress(RegionalMuonCand::kME2Ch) & emtfTrAddrMe2ChMask_) << emtfTrAddrMe2ChShift_ |
255  (mu.trackSubAddress(RegionalMuonCand::kME3Seg) & 0x1) << emtfTrAddrMe3SegShift_ |
256  (mu.trackSubAddress(RegionalMuonCand::kME3Ch) & emtfTrAddrMe3ChMask_) << emtfTrAddrMe3ChShift_ |
257  (mu.trackSubAddress(RegionalMuonCand::kME4Seg) & 0x1) << emtfTrAddrMe4SegShift_ |
258  (mu.trackSubAddress(RegionalMuonCand::kME4Ch) & emtfTrAddrMe4ChMask_) << emtfTrAddrMe4ChShift_;
259 
260  } else {
261  edm::LogWarning("L1T") << "EMTF muon track address map contains " << mu.trackAddress().size()
262  << " instead of the expected " << RegionalMuonCand::kNumEmtfSubAddr
263  << " subaddresses. Check the data format. Setting track address to 0.";
264  rawTrkAddr = 0;
265  }
266  } else if (tf == omtf_neg || tf == omtf_pos) {
267  // protection against a track address map with the wrong size
268  if (mu.trackAddress().size() == RegionalMuonCand::kNumOmtfSubAddr) {
269  rawTrkAddr = (mu.trackSubAddress(RegionalMuonCand::kLayers) & omtfTrAddrLayersMask_) << omtfTrAddrLayersShift_ |
270  (mu.trackSubAddress(RegionalMuonCand::kWeight) & omtfTrAddrWeightMask_) << omtfTrAddrWeightShift_;
271 
272  } else {
273  edm::LogWarning("L1T") << "OMTF muon track address map contains " << mu.trackAddress().size()
274  << " instead of the expected " << RegionalMuonCand::kNumOmtfSubAddr
275  << " subaddresses. Check the data format. Setting track address to 0.";
276  rawTrkAddr = 0;
277  }
278  } else {
279  rawTrkAddr = mu.trackAddress().at(0);
280  }
281 
282  return rawTrkAddr;
283 }
void setOneTightInTime(const bool bit)
void setOneLooseInTime(const bool bit)
static void generatePackedDataWords(const RegionalMuonCand &mu, uint32_t &raw_data_00_31, uint32_t &raw_data_32_63, bool isKbmtf, bool useOmtfDisplacementInfo, bool useEmtfDisplacementInfo)
Log< level::Error, false > LogError
static void generatePackedShowerPayload(const RegionalMuonShower &shower, std::array< uint32_t, 6 > &payload, bool useEmtfNominalTightShowers, bool useEmtfLooseShowers)
static bool fillRegionalMuonShower(RegionalMuonShower &muShower, std::vector< uint32_t > bxPayload, int proc, tftype tf, bool useEmtfNominalTightShowers, bool useEmtfLooseShowers)
void setOneNominalInTime(const bool bit)
static void fillRegionalMuonCand(RegionalMuonCand &mu, uint32_t raw_data_00_31, uint32_t raw_data_32_63, int proc, tftype tf, bool isKbmtf, bool useOmtfDisplacementInfo, bool useEmtfDisplacementInfo)
static uint64_t generate64bitDataWord(const RegionalMuonCand &mu, bool isKbmtf, bool useOmtfDisplacementInfo, bool useEmtfDisplacementInfo)
unsigned long long uint64_t
Definition: Time.h:13
static int generateRawTrkAddress(const RegionalMuonCand &, bool isKalman)
bool isOneNominalOutOfTime() const
void setTFIdentifiers(int processor, tftype trackFinder)
Set the processor ID, track-finder type. From these two, the link is set.
Log< level::Warning, false > LogWarning
static constexpr unsigned kOmtfPtUnconstrainedShift_