CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
L1MuBMEUX::EUX_Comp Class Reference

helper class for finding the best and second best extrapolation More...

#include <L1MuBMEUX.h>

Public Member Functions

 EUX_Comp (const L1MuBMEUX *k=nullptr)
 
bool operator() (const L1MuBMEUX *first, const L1MuBMEUX *second) const
 

Private Attributes

const L1MuBMEUX_not
 

Detailed Description

helper class for finding the best and second best extrapolation

Definition at line 74 of file L1MuBMEUX.h.

Constructor & Destructor Documentation

◆ EUX_Comp()

L1MuBMEUX::EUX_Comp::EUX_Comp ( const L1MuBMEUX k = nullptr)
inline

Definition at line 76 of file L1MuBMEUX.h.

76 : _not(k) {}
const L1MuBMEUX * _not
Definition: L1MuBMEUX.h:88

Member Function Documentation

◆ operator()()

bool L1MuBMEUX::EUX_Comp::operator() ( const L1MuBMEUX first,
const L1MuBMEUX second 
) const
inline

Definition at line 77 of file L1MuBMEUX.h.

References _not, dqmdumpme::first, and edm::second().

77  {
78  if (!second->result())
79  return false;
80  if (_not != nullptr && *first == *_not)
81  return true;
82  if (_not != nullptr && *second == *_not)
83  return false;
84  return (first->quality() < second->quality());
85  }
U second(std::pair< T, U > const &p)
const L1MuBMEUX * _not
Definition: L1MuBMEUX.h:88

Member Data Documentation

◆ _not

const L1MuBMEUX* L1MuBMEUX::EUX_Comp::_not
private

Definition at line 88 of file L1MuBMEUX.h.

Referenced by operator()().