CMS 3D CMS Logo

List of all members | Public Member Functions
GreaterByPtPtr< T > Class Template Reference

#include <JetAlgoHelper.h>

Public Member Functions

int operator() (const T *a1, const T *a2)
 

Detailed Description

template<class T>
class GreaterByPtPtr< T >

Definition at line 86 of file JetAlgoHelper.h.

Member Function Documentation

template<class T >
int GreaterByPtPtr< T >::operator() ( const T a1,
const T a2 
)
inline

Definition at line 88 of file JetAlgoHelper.h.

References AlCaHLTBitMon_QueryRunRegistry::comp.

88  {
89  if (!a1) return 0;
90  if (!a2) return 1;
92  return comp.operator () (*a1, *a2);
93  }