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 /** 
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 
0017 #endif