CMS 3D CMS Logo

RegionalMuonRawDigiTranslator.cc
Go to the documentation of this file.
3 
4 void
5 l1t::RegionalMuonRawDigiTranslator::fillRegionalMuonCand(RegionalMuonCand& mu, uint32_t raw_data_00_31, uint32_t raw_data_32_63, int proc, tftype tf)
6 {
7  // translations as defined in DN-15-017
8  mu.setHwPt((raw_data_00_31 >> ptShift_) & ptMask_);
9  mu.setHwQual((raw_data_00_31 >> qualShift_) & qualMask_);
10 
11  // eta is coded as two's complement
12  int abs_eta = (raw_data_00_31 >> absEtaShift_) & absEtaMask_;
13  if ((raw_data_00_31 >> etaSignShift_) & 0x1) {
14  mu.setHwEta(abs_eta - (1 << (etaSignShift_ - absEtaShift_)));
15  } else {
16  mu.setHwEta(abs_eta);
17  }
18 
19  // phi is coded as two's complement
20  int abs_phi = (raw_data_00_31 >> absPhiShift_) & absPhiMask_;
21  if ((raw_data_00_31 >> phiSignShift_) & 0x1) {
22  mu.setHwPhi(abs_phi - (1 << (phiSignShift_ - absPhiShift_)));
23  } else {
24  mu.setHwPhi(abs_phi);
25  }
26 
27  // sign is coded as -1^signBit
28  mu.setHwSign((raw_data_32_63 >> signShift_) & 0x1);
29  mu.setHwSignValid((raw_data_32_63 >> signValidShift_) & 0x1);
30  mu.setHwHF((raw_data_00_31 >> hfShift_) & hfMask_);
31 
32  // set track address with subaddresses
33  int rawTrackAddress = (raw_data_32_63 >> trackAddressShift_) & trackAddressMask_;
34  if (tf == bmtf) {
35  //int segSel = (rawTrackAddress >> bmtfTrAddrSegSelShift_) & bmtfTrAddrSegSelMask_;
36  int detSide = (rawTrackAddress >> bmtfTrAddrDetSideShift_) & 0x1;
37  int wheelNum = (rawTrackAddress >> bmtfTrAddrWheelShift_) & bmtfTrAddrWheelMask_;
38  int statAddr1 = ((rawTrackAddress >> bmtfTrAddrStat1Shift_) & bmtfTrAddrStat1Mask_);
39  int statAddr2 = ((rawTrackAddress >> bmtfTrAddrStat2Shift_) & bmtfTrAddrStat2Mask_);
40  int statAddr3 = ((rawTrackAddress >> bmtfTrAddrStat3Shift_) & bmtfTrAddrStat3Mask_);
41  int statAddr4 = ((rawTrackAddress >> bmtfTrAddrStat4Shift_) & bmtfTrAddrStat4Mask_);
42 
53  //mu.setTrackSubAddress(RegionalMuonCand::kNumBmtfSubAddr, 0);
54  } else if (tf == emtf_neg || tf == emtf_pos) {
65  } else if (tf == omtf_neg || tf == omtf_pos) {
69  } else {
70  std::map<int, int> trackAddr;
71  trackAddr[0] = rawTrackAddress;
72  mu.setTrackAddress(trackAddr);
73  }
74 
75  mu.setTFIdentifiers(proc, tf);
76  mu.setDataword(raw_data_32_63, raw_data_00_31);
77 }
78 
79 void
81 {
82  fillRegionalMuonCand(mu, (uint32_t)(dataword & 0xFFFFFFFF), (uint32_t)((dataword >> 32) & 0xFFFFFFFF), proc, tf);
83 }
84 
85 void
86 l1t::RegionalMuonRawDigiTranslator::generatePackedDataWords(const RegionalMuonCand& mu, uint32_t &raw_data_00_31, uint32_t &raw_data_32_63)
87 {
88  int abs_eta = mu.hwEta();
89  if (abs_eta < 0) {
90  abs_eta += (1 << (etaSignShift_ - absEtaShift_));
91  }
92  int abs_phi = mu.hwPhi();
93  if (abs_phi < 0) {
94  abs_phi += (1 << (phiSignShift_ - absPhiShift_));
95  }
96  raw_data_00_31 = (mu.hwPt() & ptMask_) << ptShift_
97  | (mu.hwQual() & qualMask_) << qualShift_
98  | (abs_eta & absEtaMask_) << absEtaShift_
99  | (mu.hwEta() < 0) << etaSignShift_
100  | (mu.hwHF() & hfMask_) << hfShift_
101  | (abs_phi & absPhiMask_) << absPhiShift_
102  | (mu.hwPhi() < 0) << phiSignShift_;
103 
104  // generate the raw track address from the subaddresses
105  int tf = mu.trackFinderType();
106  int rawTrkAddr = 0;
107  if (tf == bmtf) {
108  // protection against a track address map with the wrong size
109  if (mu.trackAddress().size() == RegionalMuonCand::kNumBmtfSubAddr) {
111  int wheelNum = mu.trackSubAddress(RegionalMuonCand::kWheelNum);
116 
121 
122  rawTrkAddr = (segSel & bmtfTrAddrSegSelMask_) << bmtfTrAddrSegSelShift_
123  | (detSide & 0x1) << bmtfTrAddrDetSideShift_
129  } else {
130  edm::LogWarning("L1T") << "BMTF muon track address map contains " << mu.trackAddress().size() << " instead of the expected " << RegionalMuonCand::kNumBmtfSubAddr << " subaddresses. Check the data format. Setting track address to 0.";
131  rawTrkAddr = 0;
132  }
133  } else if (tf == emtf_neg || tf == emtf_pos) {
134  // protection against a track address map with the wrong size
135  if (mu.trackAddress().size() == RegionalMuonCand::kNumEmtfSubAddr) {
136 
137  rawTrkAddr =
148 
149  } else {
150  edm::LogWarning("L1T") << "EMTF muon track address map contains " << mu.trackAddress().size() << " instead of the expected " << RegionalMuonCand::kNumEmtfSubAddr << " subaddresses. Check the data format. Setting track address to 0.";
151  rawTrkAddr = 0;
152  }
153  } else if (tf == omtf_neg || tf == omtf_pos) {
154  // protection against a track address map with the wrong size
155  if (mu.trackAddress().size() == RegionalMuonCand::kNumOmtfSubAddr) {
156 
157  rawTrkAddr =
160 
161  } else {
162  edm::LogWarning("L1T") << "OMTF muon track address map contains " << mu.trackAddress().size() << " instead of the expected " << RegionalMuonCand::kNumOmtfSubAddr << " subaddresses. Check the data format. Setting track address to 0.";
163  rawTrkAddr = 0;
164  }
165  } else {
166  rawTrkAddr = mu.trackAddress().at(0);
167  }
168 
169  raw_data_32_63 = mu.hwSign() << signShift_
170  | mu.hwSignValid() << signValidShift_
171  | (rawTrkAddr & trackAddressMask_) << trackAddressShift_;
172 }
173 
174 uint64_t
176 {
177  uint32_t lsw;
178  uint32_t msw;
179 
180  generatePackedDataWords(mu, lsw, msw);
181  return (((uint64_t)msw) << 32) + lsw;
182 }
183 
void setHwPhi(int bits)
Set compressed relative phi as transmitted by hardware LSB = 2*pi/576 (8 bits)
const int hwSignValid() const
Get charge sign valid bit (0 - not valid (high pT muon); 1 - valid)
static void generatePackedDataWords(const RegionalMuonCand &, uint32_t &, uint32_t &)
TrainProcessor *const proc
Definition: MVATrainer.cc:101
void setTrackAddress(const std::map< int, int > &address)
Set the whole track address.
const int hwQual() const
Get quality code.
void setTFIdentifiers(int processor, tftype trackFinder)
Set the processor ID, track-finder type. From these two, the link is set.
void setTrackSubAddress(bmtfAddress subAddress, int value)
Set a part of the muon candidates track address; specialised for BMTF.
const int hwHF() const
Get HF (halo / fine eta) bit (EMTF: halo -> 1; BMTF: fine eta -> 1)
void setDataword(uint32_t msbs, uint32_t lsbs)
void setHwHF(bool bit)
Set HF (halo / fine eta) bit (EMTF: halo -> 1; BMTF: fine eta -> 1)
const int hwEta() const
Get compressed eta (returned int * 0.010875 = eta)
const int mu
Definition: Constants.h:22
const std::map< int, int > & trackAddress() const
Get the track address (identifies track primitives used for reconstruction)
const int hwPhi() const
Get compressed local phi (returned int * 2*pi/576 = local phi in rad)
const tftype trackFinderType() const
Get track-finder which found the muon (bmtf, emtf_pos/emtf_neg or omtf_pos/omtf_neg) ...
void setHwQual(int bits)
Set compressed quality code as transmitted by hardware (4 bits)
void setHwPt(int bits)
Set compressed pT as transmitted by hardware LSB = 0.5 (9 bits)
void setHwEta(int bits)
Set compressed eta as transmitted by hardware LSB = 0.010875 (9 bits)
unsigned long long uint64_t
Definition: Time.h:15
static void fillRegionalMuonCand(RegionalMuonCand &, uint32_t, uint32_t, int, tftype)
static uint64_t generate64bitDataWord(const RegionalMuonCand &)
int trackSubAddress(bmtfAddress subAddress) const
Get part of track address (identifies track primitives used for reconstruction)
const int hwPt() const
Get compressed pT (returned int * 0.5 = pT (GeV))
const int hwSign() const
Get charge sign bit (charge = (-1)^(sign))
void setHwSignValid(int bits)
Set whether charge measurement is valid (0 for high pT muons)
void setHwSign(int bits)
Set charge sign bit (charge = (-1)^(sign))