Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef _DummyVertexSmoother_H_
0002 #define _DummyVertexSmoother_H_
0003 
0004 #include "RecoVertex/VertexPrimitives/interface/VertexSmoother.h"
0005 
0006 /**
0007  *  A dummy vertex smoother. Input = Output.
0008  */
0009 
0010 template <unsigned int N>
0011 class DummyVertexSmoother : public VertexSmoother<N> {
0012 public:
0013   CachingVertex<N> smooth(const CachingVertex<N>&) const override;
0014   DummyVertexSmoother* clone() const override;
0015 };
0016 
0017 #endif