CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Types | Public Member Functions | Private Member Functions
L1MuGMTLFPtMixLUT Class Reference

#include <L1MuGMTLFPtMixLUT.h>

Inheritance diagram for L1MuGMTLFPtMixLUT:
L1MuGMTLUT

Public Types

enum  { DTRPC, CSCRPC }
 
- Public Types inherited from L1MuGMTLUT
typedef std::pair< std::string,
unsigned > 
port
 

Public Member Functions

 L1MuGMTLFPtMixLUT ()
 constuctor using function-lookup More...
 
virtual unsigned LookupFunctionPacked (int idx, unsigned address) const
 access to lookup function with packed input and output More...
 
unsigned SpecificLookup (int idx, unsigned pt_dtcsc, unsigned pt_rpc) const
 specific lookup function for entire output field More...
 
unsigned SpecificLookup_pt_mixed (int idx, unsigned pt_dtcsc, unsigned pt_rpc) const
 specific lookup function for pt_mixed More...
 
virtual ~L1MuGMTLFPtMixLUT ()
 destructor More...
 
- Public Member Functions inherited from L1MuGMTLUT
 L1MuGMTLUT ()
 Init and Destruct. More...
 
 L1MuGMTLUT (const char *name, const std::vector< std::string > &instances, const std::vector< port > &in_widths, const std::vector< port > &out_widths, unsigned vme_addr_width=0, bool distrRAM=false)
 constructor with init More...
 
 L1MuGMTLUT (const char *name, const std::string &instances, const std::string &inputs, const std::string &outputs, unsigned vme_addr_width=0, bool distrRAM=false)
 
void Load (const char *path)
 I/O functions. More...
 
std::vector< unsigned > Lookup (int idx, const std::vector< unsigned > &address) const
 additional lookup function (std::vector -> vector) More...
 
std::vector< unsigned > Lookup (int idx, unsigned address) const
 additional lookup function (unsigned -> std::vector) More...
 
unsigned LookupPacked (int idx, unsigned) const
 
unsigned LookupPacked (int idx, const std::vector< unsigned > &address) const
 additional lookup function (std::vector -> unisgned) More...
 
void MakeSubClass (const char *fname="", const char *template_file_h="../interface/L1MuGMTLUT_SubClass.h_template", const char *template_file_cc="../interface/L1MuGMTLUT_SubClass.cc_template")
 Add Generate SubClass method. More...
 
std::string Name ()
 
int numberOfInstances ()
 get the number of Instances More...
 
void Save (const char *path)
 save to LUT file More...
 
virtual ~L1MuGMTLUT ()
 destructor More...
 

Private Member Functions

void InitParameters ()
 Initialize scales, configuration parameters, alignment constants, ... More...
 
unsigned TheLookupFunction (int idx, unsigned pt_dtcsc, unsigned pt_rpc) const
 The lookup function - here the functionality of the LUT is implemented. More...
 

Additional Inherited Members

- Protected Member Functions inherited from L1MuGMTLUT
void Init (const char *name, const std::vector< std::string > &instances, const std::vector< port > &in_widths, const std::vector< port > &out_widths, unsigned vme_addr_width=0, bool distrRAM=false)
 Initialize the LUT. More...
 
void Set (int idx, unsigned address, unsigned value)
 set with single address and value More...
 
std::vector< unsigned > u2vec (unsigned value, const std::vector< port > &widths) const
 generate composite address or value from compact unsigned More...
 
unsigned vec2u (const std::vector< unsigned > &vec, const std::vector< port > &widths) const
 generate address or value from composite address or value More...
 
- Protected Attributes inherited from L1MuGMTLUT
std::vector< std::vector
< unsigned > > 
m_Contents
 
bool m_distrRAM
 
unsigned m_GeneralLUTVersion
 
bool m_initialized
 
std::vector< portm_Inputs
 
std::vector< std::string > m_InstNames
 
std::string m_name
 
int m_NLUTS
 
std::vector< portm_Outputs
 
bool m_saveFlag
 
unsigned m_TotalInWidth
 
unsigned m_TotalOutWidth
 
bool m_UseLookupFunction
 
unsigned m_vme_addr_width
 

Detailed Description

LFPtMix look-up table

this class was automatically generated by L1MuGMTLUT::MakeSubClass()

Definition at line 40 of file L1MuGMTLFPtMixLUT.h.

Member Enumeration Documentation

anonymous enum
Enumerator
DTRPC 
CSCRPC 

Definition at line 43 of file L1MuGMTLFPtMixLUT.h.

Constructor & Destructor Documentation

L1MuGMTLFPtMixLUT::L1MuGMTLFPtMixLUT ( )
inline

constuctor using function-lookup

Definition at line 46 of file L1MuGMTLFPtMixLUT.h.

References InitParameters().

46  : L1MuGMTLUT("LFPtMix",
47  "DTRPC CSCRPC",
48  "pt_dtcsc(5) pt_rpc(5)",
49  "pt_mixed(5)", 9, false) {
51  } ;
void InitParameters()
Initialize scales, configuration parameters, alignment constants, ...
L1MuGMTLUT()
Init and Destruct.
Definition: L1MuGMTLUT.h:83
virtual L1MuGMTLFPtMixLUT::~L1MuGMTLFPtMixLUT ( )
inlinevirtual

destructor

Definition at line 54 of file L1MuGMTLFPtMixLUT.h.

54 {};

Member Function Documentation

void L1MuGMTLFPtMixLUT::InitParameters ( )
private

Initialize scales, configuration parameters, alignment constants, ...

Definition at line 32 of file L1MuGMTLFPtMixLUT.cc.

Referenced by L1MuGMTLFPtMixLUT().

32  {
33 }
virtual unsigned L1MuGMTLFPtMixLUT::LookupFunctionPacked ( int  idx,
unsigned  address 
) const
inlinevirtual

access to lookup function with packed input and output

Reimplemented from L1MuGMTLUT.

Definition at line 76 of file L1MuGMTLFPtMixLUT.h.

References L1MuGMTLUT::m_Inputs, TheLookupFunction(), and L1MuGMTLUT::u2vec().

76  {
77  std::vector<unsigned> addr = u2vec(address, m_Inputs);
78  return TheLookupFunction(idx ,addr[0] ,addr[1]);
79 
80  };
unsigned TheLookupFunction(int idx, unsigned pt_dtcsc, unsigned pt_rpc) const
The lookup function - here the functionality of the LUT is implemented.
std::vector< port > m_Inputs
Definition: L1MuGMTLUT.h:201
tuple idx
DEBUGGING if hasattr(process,&quot;trackMonIterativeTracking2012&quot;): print &quot;trackMonIterativeTracking2012 D...
std::vector< unsigned > u2vec(unsigned value, const std::vector< port > &widths) const
generate composite address or value from compact unsigned
Definition: L1MuGMTLUT.h:239
unsigned L1MuGMTLFPtMixLUT::SpecificLookup ( int  idx,
unsigned  pt_dtcsc,
unsigned  pt_rpc 
) const
inline

specific lookup function for entire output field

Definition at line 65 of file L1MuGMTLFPtMixLUT.h.

References L1MuGMTLUT::LookupPacked().

65  {
66  std::vector<unsigned> addr(2);
67  addr[0] = pt_dtcsc;
68  addr[1] = pt_rpc;
69  return LookupPacked(idx, addr);
70  };
tuple idx
DEBUGGING if hasattr(process,&quot;trackMonIterativeTracking2012&quot;): print &quot;trackMonIterativeTracking2012 D...
unsigned LookupPacked(int idx, unsigned) const
Definition: L1MuGMTLUT.h:260
unsigned L1MuGMTLFPtMixLUT::SpecificLookup_pt_mixed ( int  idx,
unsigned  pt_dtcsc,
unsigned  pt_rpc 
) const
inline

specific lookup function for pt_mixed

Definition at line 57 of file L1MuGMTLFPtMixLUT.h.

References L1MuGMTLUT::Lookup().

Referenced by L1MuGMTMerger::createMergedCand().

57  {
58  std::vector<unsigned> addr(2);
59  addr[0] = pt_dtcsc;
60  addr[1] = pt_rpc;
61  return Lookup(idx, addr) [0];
62  };
std::vector< unsigned > Lookup(int idx, const std::vector< unsigned > &address) const
additional lookup function (std::vector -&gt; vector)
Definition: L1MuGMTLUT.h:115
tuple idx
DEBUGGING if hasattr(process,&quot;trackMonIterativeTracking2012&quot;): print &quot;trackMonIterativeTracking2012 D...
unsigned L1MuGMTLFPtMixLUT::TheLookupFunction ( int  idx,
unsigned  pt_dtcsc,
unsigned  pt_rpc 
) const
private

The lookup function - here the functionality of the LUT is implemented.

Definition at line 39 of file L1MuGMTLFPtMixLUT.cc.

Referenced by LookupFunctionPacked().

39  {
40  // idx is DTRPC, CSCRPC
41  // INPUTS: pt_dtcsc(5) pt_rpc(5)
42  // OUTPUTS: pt_mixed(5)
43 
44 
45  // choosing maximum pt
46 
47  return pt_dtcsc < pt_rpc ? pt_rpc : pt_dtcsc;
48 }