CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
L1MuGMTLFPhiProEtaConvLUT.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_L1MuGMTLFPhiProEtaConvLUT_h
19 #define L1TriggerGlobalMuonTrigger_L1MuGMTLFPhiProEtaConvLUT_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  L1MuGMTLFPhiProEtaConvLUT() : L1MuGMTLUT("LFPhiProEtaConv", "DT BRPC CSC FRPC", "eta_in(6)", "eta_out(4)", 6, true) {
45  };
46 
49 
51  unsigned SpecificLookup_eta_out(int idx, unsigned eta_in) const {
52  std::vector<unsigned> addr(1);
53  addr[0] = eta_in;
54  return Lookup(idx, addr)[0];
55  };
56 
58  unsigned SpecificLookup(int idx, unsigned eta_in) const {
59  std::vector<unsigned> addr(1);
60  addr[0] = eta_in;
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_in) const;
77 
79 };
80 #endif
void InitParameters()
Initialize scales, configuration parameters, alignment constants, ...
unsigned LookupFunctionPacked(int idx, unsigned address) const override
access to lookup function with packed input and output
std::vector< unsigned > Lookup(int idx, const std::vector< unsigned > &address) const
additional lookup function (std::vector -&gt; vector)
Definition: L1MuGMTLUT.h:121
unsigned SpecificLookup(int idx, unsigned eta_in) const
specific lookup function for entire output field
unsigned SpecificLookup_eta_out(int idx, unsigned eta_in) const
specific lookup function for eta_out
L1MuGMTLFPhiProEtaConvLUT()
constuctor using function-lookup
std::vector< port > m_Inputs
Definition: L1MuGMTLUT.h:214
~L1MuGMTLFPhiProEtaConvLUT() override
destructor
unsigned TheLookupFunction(int idx, unsigned eta_in) const
The lookup function - here the functionality of the LUT is implemented.
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