CMS 3D CMS Logo

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

#include <L1MuBMERS.h>

Public Member Functions

unsigned short int address (int id) const
 return extrapolation address; (address = 15 indicates negative ext. result) More...
 
 L1MuBMERS (const L1MuBMSEU &)
 constructor More...
 
unsigned int quality (int id) const
 return extrapolation quality More...
 
void reset ()
 reset ERS More...
 
void run ()
 run L1MuBMERS More...
 
std::pair< const
L1MuBMTrackSegPhi *, const
L1MuBMTrackSegPhi * > 
ts (int id) const
 return pointer to start and target track segment More...
 
 ~L1MuBMERS ()
 destructor More...
 

Private Attributes

unsigned short int m_address [2]
 
unsigned short int m_quality [2]
 
const L1MuBMSEUm_seu
 
const L1MuBMTrackSegPhim_start [2]
 
const L1MuBMTrackSegPhim_target [2]
 

Detailed Description

Extrapolation Result Selector (Quality Sorter Unit):

selects the 2 best (highest target quality) out of the 12 (6) extrapolations performed per start track segment

N. Neumeister CERN EP

Definition at line 41 of file L1MuBMERS.h.

Constructor & Destructor Documentation

L1MuBMERS::L1MuBMERS ( const L1MuBMSEU seu)

constructor

Definition at line 46 of file L1MuBMERS.cc.

References reset().

46 : m_seu(seu) { reset(); }
const L1MuBMSEU & m_seu
Definition: L1MuBMERS.h:65
void reset()
reset ERS
Definition: L1MuBMERS.cc:96
L1MuBMERS::~L1MuBMERS ( )

destructor

Definition at line 52 of file L1MuBMERS.cc.

52 {}

Member Function Documentation

unsigned short int L1MuBMERS::address ( int  id) const
inline

return extrapolation address; (address = 15 indicates negative ext. result)

Definition at line 59 of file L1MuBMERS.h.

References gpuClustering::id, and m_address.

59 { return m_address[id]; }
uint16_t *__restrict__ id
unsigned short int m_address[2]
Definition: L1MuBMERS.h:68
unsigned int L1MuBMERS::quality ( int  id) const
inline

return extrapolation quality

Definition at line 56 of file L1MuBMERS.h.

References gpuClustering::id, and m_quality.

56 { return m_quality[id]; }
uint16_t *__restrict__ id
unsigned short int m_quality[2]
Definition: L1MuBMERS.h:67
void L1MuBMERS::reset ( void  )

reset ERS

Definition at line 96 of file L1MuBMERS.cc.

References gpuClustering::id, m_address, m_quality, m_start, and m_target.

Referenced by L1MuBMERS(), and L1MuBMSEU::reset().

96  {
97  for (int id = 0; id < 2; id++) {
98  m_quality[id] = 0;
99  m_address[id] = 15;
100  m_start[id] = nullptr;
101  m_target[id] = nullptr;
102  }
103 }
uint16_t *__restrict__ id
unsigned short int m_quality[2]
Definition: L1MuBMERS.h:67
const L1MuBMTrackSegPhi * m_target[2]
Definition: L1MuBMERS.h:71
const L1MuBMTrackSegPhi * m_start[2]
Definition: L1MuBMERS.h:70
unsigned short int m_address[2]
Definition: L1MuBMERS.h:68
void L1MuBMERS::run ( )

run L1MuBMERS

Definition at line 61 of file L1MuBMERS.cc.

References gather_cfg::cout, L1MuBMTFConfig::Debug(), L1MuBMSEU::eux(), first, dqmdumpme::last, m_address, m_quality, m_seu, m_start, m_target, and L1MuBMSEU::numberOfExt().

Referenced by L1MuBMSEU::run().

61  {
62  int n_ext = m_seu.numberOfExt();
63  if (n_ext > 0) {
64  vector<L1MuBMEUX*>::const_iterator first = m_seu.eux().begin();
65  vector<L1MuBMEUX*>::const_iterator last = m_seu.eux().end();
66  vector<L1MuBMEUX*>::const_iterator first_max;
67  vector<L1MuBMEUX*>::const_iterator second_max;
68 
69  // find the best extrapolation
70  first_max = max_element(first, last, L1MuBMEUX::EUX_Comp());
71  m_address[0] = (*first_max)->address();
72  m_quality[0] = (*first_max)->quality();
73  m_start[0] = (*first_max)->ts().first;
74  m_target[0] = (*first_max)->ts().second;
75 
76  if (n_ext > 1) {
77  // find the second best extrapolation
78  second_max = max_element(first, last, L1MuBMEUX::EUX_Comp(*first_max));
79  m_address[1] = (*second_max)->address();
80  m_quality[1] = (*second_max)->quality();
81  m_start[1] = (*second_max)->ts().first;
82  m_target[1] = (*second_max)->ts().second;
83  }
84 
85  if (L1MuBMTFConfig::Debug(4)) {
86  cout << "ERS : " << endl;
87  cout << "\t first : " << m_address[0] << '\t' << m_quality[0] << endl;
88  cout << "\t second : " << m_address[1] << '\t' << m_quality[1] << endl;
89  }
90  }
91 }
int numberOfExt() const
return number of successful extrapolations
Definition: L1MuBMSEU.cc:173
unsigned short int m_quality[2]
Definition: L1MuBMERS.h:67
const std::vector< L1MuBMEUX * > & eux() const
return pointer to an Extrapolator
Definition: L1MuBMSEU.h:90
const L1MuBMTrackSegPhi * m_target[2]
Definition: L1MuBMERS.h:71
const L1MuBMSEU & m_seu
Definition: L1MuBMERS.h:65
static bool Debug()
helper class for finding the best and second best extrapolation
Definition: L1MuBMEUX.h:74
tuple cout
Definition: gather_cfg.py:144
const L1MuBMTrackSegPhi * m_start[2]
Definition: L1MuBMERS.h:70
tuple last
Definition: dqmdumpme.py:56
unsigned short int m_address[2]
Definition: L1MuBMERS.h:68
pair< const L1MuBMTrackSegPhi *, const L1MuBMTrackSegPhi * > L1MuBMERS::ts ( int  id) const

return pointer to start and target track segment

Definition at line 108 of file L1MuBMERS.cc.

References gpuClustering::id, m_start, and m_target.

108  {
109  return pair<const L1MuBMTrackSegPhi*, const L1MuBMTrackSegPhi*>(m_start[id], m_target[id]);
110 }
uint16_t *__restrict__ id
const L1MuBMTrackSegPhi * m_target[2]
Definition: L1MuBMERS.h:71
const L1MuBMTrackSegPhi * m_start[2]
Definition: L1MuBMERS.h:70

Member Data Documentation

unsigned short int L1MuBMERS::m_address[2]
private

Definition at line 68 of file L1MuBMERS.h.

Referenced by address(), reset(), and run().

unsigned short int L1MuBMERS::m_quality[2]
private

Definition at line 67 of file L1MuBMERS.h.

Referenced by quality(), reset(), and run().

const L1MuBMSEU& L1MuBMERS::m_seu
private

Definition at line 65 of file L1MuBMERS.h.

Referenced by run().

const L1MuBMTrackSegPhi* L1MuBMERS::m_start[2]
private

Definition at line 70 of file L1MuBMERS.h.

Referenced by reset(), run(), and ts().

const L1MuBMTrackSegPhi* L1MuBMERS::m_target[2]
private

Definition at line 71 of file L1MuBMERS.h.

Referenced by reset(), run(), and ts().