CMS 3D CMS Logo

L1MuGMTLFEtaConvLUT.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_L1MuGMTLFEtaConvLUT_h
19 #define L1TriggerGlobalMuonTrigger_L1MuGMTLFEtaConvLUT_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 
43  L1MuGMTLFEtaConvLUT() : L1MuGMTLUT("LFEtaConv", "DT bRPC CSC fRPC", "eta_regional(6)", "eta_gmt(6)", 6, true) {
45  };
46 
48  ~L1MuGMTLFEtaConvLUT() override{};
49 
51  unsigned SpecificLookup_eta_gmt(int idx, unsigned eta_regional) const {
52  std::vector<unsigned> addr(1);
53  addr[0] = eta_regional;
54  return Lookup(idx, addr)[0];
55  };
56 
58  unsigned SpecificLookup(int idx, unsigned eta_regional) const {
59  std::vector<unsigned> addr(1);
60  addr[0] = eta_regional;
61  return LookupPacked(idx, addr);
62  };
63 
65 
66  unsigned LookupFunctionPacked(int idx, unsigned address) const override {
67  std::vector<unsigned> addr = u2vec(address, m_Inputs);
68  return TheLookupFunction(idx, addr[0]);
69  };
70 
71 private:
73  void InitParameters();
74 
76  unsigned TheLookupFunction(int idx, unsigned eta_regional) const;
77 };
78 #endif
unsigned SpecificLookup_eta_gmt(int idx, unsigned eta_regional) const
specific lookup function for eta_gmt
std::vector< unsigned > Lookup(int idx, const std::vector< unsigned > &address) const
additional lookup function (std::vector -> vector)
Definition: L1MuGMTLUT.h:121
L1MuGMTLFEtaConvLUT()
constuctor using function-lookup
~L1MuGMTLFEtaConvLUT() override
destructor
std::vector< port > m_Inputs
Definition: L1MuGMTLUT.h:214
unsigned SpecificLookup(int idx, unsigned eta_regional) const
specific lookup function for entire output field
unsigned TheLookupFunction(int idx, unsigned eta_regional) 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
void InitParameters()
Initialize scales, configuration parameters, alignment constants, ...
std::vector< unsigned > u2vec(unsigned value, const std::vector< port > &widths) const
generate composite address or value from compact unsigned
Definition: L1MuGMTLUT.h:251
unsigned LookupPacked(int idx, unsigned) const
Definition: L1MuGMTLUT.h:272