CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
L1MuGMTLFDeltaEtaLUT.h
Go to the documentation of this file.
1 //-------------------------------------------------
2 //
10 // $Date: 2007/04/02 15:45:38 $
11 // $Revision: 1.3 $
12 //
13 // Author :
14 // H. Sakulin HEPHY Vienna
15 //
16 // Migrated to CMSSW:
17 // I. Mikulec
18 //
19 //--------------------------------------------------
20 #ifndef L1TriggerGlobalMuonTrigger_L1MuGMTLFDeltaEtaLUT_h
21 #define L1TriggerGlobalMuonTrigger_L1MuGMTLFDeltaEtaLUT_h
22 
23 //---------------
24 // C++ Headers --
25 //---------------
26 
27 
28 //----------------------
29 // Base Class Headers --
30 //----------------------
32 
33 //------------------------------------
34 // Collaborating Class Declarations --
35 //------------------------------------
36 
37 // ---------------------
38 // -- Class Interface --
39 // ---------------------
40 
41 
43 
44  public:
45  enum {DTRPC, CSCRPC};
46 
48  L1MuGMTLFDeltaEtaLUT() : L1MuGMTLUT("LFDeltaEta",
49  "DTRPC CSCRPC",
50  "eta_dtcsc(6) eta_rpc(6)",
51  "delta_eta(4)", 10, false) {
53  } ;
54 
56  virtual ~L1MuGMTLFDeltaEtaLUT() {};
57 
59  unsigned SpecificLookup_delta_eta (int idx, unsigned eta_dtcsc, unsigned eta_rpc) const {
60  std::vector<unsigned> addr(2);
61  addr[0] = eta_dtcsc;
62  addr[1] = eta_rpc;
63  return Lookup(idx, addr) [0];
64  };
65 
67  unsigned SpecificLookup (int idx, unsigned eta_dtcsc, unsigned eta_rpc) const {
68  std::vector<unsigned> addr(2);
69  addr[0] = eta_dtcsc;
70  addr[1] = eta_rpc;
71  return LookupPacked(idx, addr);
72  };
73 
74 
75 
77 
78  virtual unsigned LookupFunctionPacked (int idx, unsigned address) const {
79  std::vector<unsigned> addr = u2vec(address, m_Inputs);
80  return TheLookupFunction(idx ,addr[0] ,addr[1]);
81 
82  };
83 
84  private:
86  void InitParameters();
87 
89  unsigned TheLookupFunction (int idx, unsigned eta_dtcsc, unsigned eta_rpc) const;
90 
91 };
92 #endif
void InitParameters()
Initialize scales, configuration parameters, alignment constants, ...
char * address
Definition: mlp_lapack.h:14
L1MuGMTLFDeltaEtaLUT()
constuctor using function-lookup
unsigned TheLookupFunction(int idx, unsigned eta_dtcsc, unsigned eta_rpc) const
The lookup function - here the functionality of the LUT is implemented.
std::vector< unsigned > Lookup(int idx, const std::vector< unsigned > &address) const
additional lookup function (std::vector -&gt; vector)
Definition: L1MuGMTLUT.h:117
unsigned SpecificLookup_delta_eta(int idx, unsigned eta_dtcsc, unsigned eta_rpc) const
specific lookup function for delta_eta
std::vector< port > m_Inputs
Definition: L1MuGMTLUT.h:203
virtual ~L1MuGMTLFDeltaEtaLUT()
destructor
virtual unsigned LookupFunctionPacked(int idx, unsigned address) const
access to lookup function with packed input and output
std::vector< unsigned > u2vec(unsigned value, const std::vector< port > &widths) const
generate composite address or value from compact unsigned
Definition: L1MuGMTLUT.h:241
unsigned SpecificLookup(int idx, unsigned eta_dtcsc, unsigned eta_rpc) const
specific lookup function for entire output field
unsigned LookupPacked(int idx, unsigned) const
Definition: L1MuGMTLUT.h:262