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
L1MuGMTLFSortRankPtQLUT Class Reference

#include <L1MuGMTLFSortRankPtQLUT.h>

Inheritance diagram for L1MuGMTLFSortRankPtQLUT:
L1MuGMTLUT

Public Types

enum  { DT, BRPC, CSC, FRPC }
 
- Public Types inherited from L1MuGMTLUT
typedef std::pair< std::string,
unsigned > 
port
 

Public Member Functions

 L1MuGMTLFSortRankPtQLUT ()
 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 q, unsigned pt) const
 specific lookup function for entire output field More...
 
unsigned SpecificLookup_rank_ptq (int idx, unsigned q, unsigned pt) const
 specific lookup function for rank_ptq More...
 
virtual ~L1MuGMTLFSortRankPtQLUT ()
 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 q, unsigned pt) 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

LFSortRankPtQ look-up table

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

Definition at line 40 of file L1MuGMTLFSortRankPtQLUT.h.

Member Enumeration Documentation

anonymous enum

Constructor & Destructor Documentation

L1MuGMTLFSortRankPtQLUT::L1MuGMTLFSortRankPtQLUT ( )
inline

constuctor using function-lookup

Definition at line 46 of file L1MuGMTLFSortRankPtQLUT.h.

References InitParameters().

46  : L1MuGMTLUT("LFSortRankPtQ",
47  "DT BRPC CSC FRPC",
48  "q(3) pt(5)",
49  "rank_ptq(7)", 7, false) {
51  } ;
L1MuGMTLUT()
Init and Destruct.
Definition: L1MuGMTLUT.h:83
void InitParameters()
Initialize scales, configuration parameters, alignment constants, ...
virtual L1MuGMTLFSortRankPtQLUT::~L1MuGMTLFSortRankPtQLUT ( )
inlinevirtual

destructor

Definition at line 54 of file L1MuGMTLFSortRankPtQLUT.h.

54 {};

Member Function Documentation

void L1MuGMTLFSortRankPtQLUT::InitParameters ( )
private

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

Definition at line 32 of file L1MuGMTLFSortRankPtQLUT.cc.

Referenced by L1MuGMTLFSortRankPtQLUT().

32  {
33 }
virtual unsigned L1MuGMTLFSortRankPtQLUT::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 L1MuGMTLFSortRankPtQLUT.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  };
std::vector< port > m_Inputs
Definition: L1MuGMTLUT.h:201
tuple idx
DEBUGGING if hasattr(process,&quot;trackMonIterativeTracking2012&quot;): print &quot;trackMonIterativeTracking2012 D...
unsigned TheLookupFunction(int idx, unsigned q, unsigned pt) 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:239
unsigned L1MuGMTLFSortRankPtQLUT::SpecificLookup ( int  idx,
unsigned  q,
unsigned  pt 
) const
inline

specific lookup function for entire output field

Definition at line 65 of file L1MuGMTLFSortRankPtQLUT.h.

References L1MuGMTLUT::LookupPacked(), EnergyCorrector::pt, and lumiQueryAPI::q.

65  {
66  std::vector<unsigned> addr(2);
67  addr[0] = q;
68  addr[1] = pt;
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 L1MuGMTLFSortRankPtQLUT::SpecificLookup_rank_ptq ( int  idx,
unsigned  q,
unsigned  pt 
) const
inline

specific lookup function for rank_ptq

Definition at line 57 of file L1MuGMTLFSortRankPtQLUT.h.

References L1MuGMTLUT::Lookup(), EnergyCorrector::pt, and lumiQueryAPI::q.

Referenced by L1MuGMTSortRankUnit::sort_rank().

57  {
58  std::vector<unsigned> addr(2);
59  addr[0] = q;
60  addr[1] = pt;
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 L1MuGMTLFSortRankPtQLUT::TheLookupFunction ( int  idx,
unsigned  q,
unsigned  pt 
) const
private

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

Definition at line 47 of file L1MuGMTLFSortRankPtQLUT.cc.

References GeomDetEnumerators::isRPC(), lumiQueryAPI::q, and HLT_25ns14e33_v1_cff::quality.

Referenced by LookupFunctionPacked().

47  {
48  // idx is DT, BRPC, CSC, FRPC
49  // INPUTS: q(3) pt(5)
50  // OUTPUTS: rank_ptq(7)
51  int isRPC = idx % 2;
52  // int isFWD = idx / 2;
53 
54  unsigned int quality = q; // DT has: 1..7
55  if ( isRPC ) quality = q*2 + 1; // RPC has: 0,1,2,3
56  if ( idx==2 ) quality = q*3 - 2; // CSC has: 1,2,3
57 
58  if (quality > 7) quality = 7;
59 
60  unsigned int rank_ptq = 3*pt + quality*5;
61 
62  if (rank_ptq > 127) rank_ptq = 127;
63  return rank_ptq;
64 }
bool isRPC(const GeomDetEnumerators::SubDetector m)
tuple idx
DEBUGGING if hasattr(process,&quot;trackMonIterativeTracking2012&quot;): print &quot;trackMonIterativeTracking2012 D...