#include <L1Trigger/DTTrackFinder/src/L1MuDTEUX.h>
Public Member Functions | |
EUX_Comp (const L1MuDTEUX *k=0) | |
bool | operator() (const L1MuDTEUX *first, const L1MuDTEUX *second) const |
Private Attributes | |
const L1MuDTEUX * | _not |
Definition at line 77 of file L1MuDTEUX.h.
L1MuDTEUX::EUX_Comp::EUX_Comp | ( | const L1MuDTEUX * | k = 0 |
) | [inline] |
bool L1MuDTEUX::EUX_Comp::operator() | ( | const L1MuDTEUX * | first, | |
const L1MuDTEUX * | second | |||
) | const [inline] |
Definition at line 80 of file L1MuDTEUX.h.
References _not, L1MuDTEUX::quality(), and L1MuDTEUX::result().
00080 { 00081 if ( !second->result() ) return false; 00082 if ( _not != 0 && *first == *_not ) return true; 00083 if ( _not != 0 && *second == *_not ) return false; 00084 return ( first->quality() < second->quality() ); 00085 }
const L1MuDTEUX* L1MuDTEUX::EUX_Comp::_not [private] |