Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-08-21 04:46:50

0001 #ifndef LMS3D_H
0002 #define LMS3D_H
0003 
0004 #include "RecoVertex/VertexTools/interface/ModeFinder3d.h"
0005 
0006 /** 
0007  *
0008  * \class Lms3d
0009  * This is a "Least Median of Squares" mode finder that works coordinate-wise
0010  * on GlobalPoints.
0011  */
0012 class Lms3d : public ModeFinder3d {
0013 public:
0014   virtual GlobalPoint operator()(std::vector<GlobalPoint>& values) const;
0015 
0016 private:
0017   virtual GlobalPoint operator()(const std::vector<PointAndDistance>&) const = 0;
0018 };
0019 
0020 #endif