#include <DataFormats/L1GlobalMuonTrigger/interface/L1MuGMTExtendedCand.h>
Public Member Functions | |
bool | operator() (const L1MuGMTExtendedCand *first, const L1MuGMTExtendedCand *second) const |
Definition at line 129 of file L1MuGMTExtendedCand.h.
bool L1MuGMTExtendedCand::Rank::operator() | ( | const L1MuGMTExtendedCand * | first, | |
const L1MuGMTExtendedCand * | second | |||
) | const [inline] |
Definition at line 131 of file L1MuGMTExtendedCand.h.
References L1MuGMTExtendedCand::rank().
00131 { 00132 unsigned int rank_f = (first) ? first->rank(): 0; 00133 unsigned int rank_s = (second) ? second->rank() : 0; 00134 return rank_f > rank_s; 00135 }