Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:29:19

0001 #ifndef LMS3D_H
0002 #define LMS3D_H
0003 
0004 #include "RecoVertex/VertexTools/interface/ModeFinder3d.h"
0005 
0006 /** Least Median sum of squares mode finder. Works coordinate wise.
0007  */
0008 class LmsModeFinder3d : public ModeFinder3d {
0009 public:
0010   GlobalPoint operator()(const std::vector<PointAndDistance>& values) const override;
0011   LmsModeFinder3d* clone() const override;
0012 };
0013 
0014 #endif