#include "DTOccupancyPoint.h"
#include <math.h>
Go to the source code of this file.
Functions | |
double | computeAverageRMS (const DTOccupancyPoint &onePoint, const DTOccupancyPoint &anotherPoint) |
double | computeMinRMS (const DTOccupancyPoint &onePoint, const DTOccupancyPoint &anotherPoint) |
double computeAverageRMS | ( | const DTOccupancyPoint & | onePoint, | |
const DTOccupancyPoint & | anotherPoint | |||
) |
Definition at line 112 of file DTOccupancyPoint.cc.
References DTOccupancyPoint::rms().
Referenced by DTOccupancyCluster::qualityCriterion().
double computeMinRMS | ( | const DTOccupancyPoint & | onePoint, | |
const DTOccupancyPoint & | anotherPoint | |||
) |
Definition at line 119 of file DTOccupancyPoint.cc.
References DTOccupancyPoint::rms().
Referenced by DTOccupancyCluster::qualityCriterion().
00119 { 00120 double ret = -1; 00121 if(onePoint.rms() > anotherPoint.rms()) { 00122 ret = anotherPoint.rms(); 00123 } else { 00124 ret = onePoint.rms(); 00125 } 00126 return ret; 00127 }