CMS 3D CMS Logo

L1MuGMTLFMergeRankEtaQLUT.h
Go to the documentation of this file.
1 //-------------------------------------------------
2 //
10 //
11 // Author :
12 // H. Sakulin HEPHY Vienna
13 //
14 // Migrated to CMSSW:
15 // I. Mikulec
16 //
17 //--------------------------------------------------
18 #ifndef L1TriggerGlobalMuonTrigger_L1MuGMTLFMergeRankEtaQLUT_h
19 #define L1TriggerGlobalMuonTrigger_L1MuGMTLFMergeRankEtaQLUT_h
20 
21 //---------------
22 // C++ Headers --
23 //---------------
24 
25 //----------------------
26 // Base Class Headers --
27 //----------------------
29 
30 //------------------------------------
31 // Collaborating Class Declarations --
32 //------------------------------------
33 
34 // ---------------------
35 // -- Class Interface --
36 // ---------------------
37 
39 public:
40  enum { DT, BRPC, CSC, FRPC };
41 
44  : L1MuGMTLUT("LFMergeRankEtaQ", "DT BRPC CSC FRPC", "eta(6) q(3)", "flag(1) rank_etaq(7)", 8, false) {
46  };
47 
50 
52  unsigned SpecificLookup_flag(int idx, unsigned eta, unsigned q) const {
53  std::vector<unsigned> addr(2);
54  addr[0] = eta;
55  addr[1] = q;
56  return Lookup(idx, addr)[0];
57  };
58 
60  unsigned SpecificLookup_rank_etaq(int idx, unsigned eta, unsigned q) const {
61  std::vector<unsigned> addr(2);
62  addr[0] = eta;
63  addr[1] = q;
64  return Lookup(idx, addr)[1];
65  };
66 
68  unsigned SpecificLookup(int idx, unsigned eta, unsigned q) const {
69  std::vector<unsigned> addr(2);
70  addr[0] = eta;
71  addr[1] = q;
72  return LookupPacked(idx, addr);
73  };
74 
76 
77  unsigned LookupFunctionPacked(int idx, unsigned address) const override {
78  std::vector<unsigned> addr = u2vec(address, m_Inputs);
79  return TheLookupFunction(idx, addr[0], addr[1]);
80  };
81 
82 private:
84  void InitParameters();
85 
87  unsigned TheLookupFunction(int idx, unsigned eta, unsigned q) const;
88 
90 };
91 #endif
L1MuGMTLFMergeRankEtaQLUT()
constuctor using function-lookup
unsigned LookupPacked(int idx, unsigned) const
Definition: L1MuGMTLUT.h:272
~L1MuGMTLFMergeRankEtaQLUT() override
destructor
std::vector< unsigned > u2vec(unsigned value, const std::vector< port > &widths) const
generate composite address or value from compact unsigned
Definition: L1MuGMTLUT.h:251
void InitParameters()
Initialize scales, configuration parameters, alignment constants, ...
std::vector< unsigned > Lookup(int idx, const std::vector< unsigned > &address) const
additional lookup function (std::vector -> vector)
Definition: L1MuGMTLUT.h:121
unsigned SpecificLookup_rank_etaq(int idx, unsigned eta, unsigned q) const
specific lookup function for rank_etaq
std::vector< port > m_Inputs
Definition: L1MuGMTLUT.h:214
unsigned SpecificLookup(int idx, unsigned eta, unsigned q) const
specific lookup function for entire output field
unsigned SpecificLookup_flag(int idx, unsigned eta, unsigned q) const
specific lookup function for flag
unsigned TheLookupFunction(int idx, unsigned eta, unsigned q) const
The lookup function - here the functionality of the LUT is implemented.
unsigned LookupFunctionPacked(int idx, unsigned address) const override
access to lookup function with packed input and output