Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef HsmModeFinder3d_H
0002 #define HsmModeFinder3d_H
0003 
0004 #include "RecoVertex/VertexTools/interface/ModeFinder3d.h"
0005 
0006 /** 
0007  *  
0008  *  \class HsmModeFinder3d,
0009  *  this is a half sample mode finder that works
0010  *  coordinate wise, in 3d.
0011  */
0012 class HsmModeFinder3d : public ModeFinder3d {
0013 public:
0014   GlobalPoint operator()(const std::vector<PointAndDistance>&) const override;
0015   HsmModeFinder3d* clone() const override;
0016 };
0017 
0018 #endif