#include <TrackingTools/GsfTools/src/TrajectoryStateLessWeight.h>
Public Member Functions | |
bool | operator() (const TrajectoryStateOnSurface a, const TrajectoryStateOnSurface b) const |
TrajectoryStateLessWeight () |
to their weight.
Definition at line 10 of file TrajectoryStateLessWeight.h.
TrajectoryStateLessWeight::TrajectoryStateLessWeight | ( | ) | [inline] |
bool TrajectoryStateLessWeight::operator() | ( | const TrajectoryStateOnSurface | a, | |
const TrajectoryStateOnSurface | b | |||
) | const [inline] |
Definition at line 14 of file TrajectoryStateLessWeight.h.
References TrajectoryStateOnSurface::isValid(), and TrajectoryStateOnSurface::weight().
00016 { 00017 if ( !a.isValid() || !b.isValid() ) return false; 00018 return a.weight()>b.weight(); 00019 }