File indexing completed on 2024-04-06 12:29:20
0001 #include "RecoVertex/VertexTools/interface/DummyVertexSmoother.h"
0002
0003 template <unsigned int N>
0004 CachingVertex<N> DummyVertexSmoother<N>::smooth(const CachingVertex<N>& vertex) const {
0005 return vertex;
0006 }
0007
0008 template <unsigned int N>
0009 DummyVertexSmoother<N>* DummyVertexSmoother<N>::clone() const {
0010 return new DummyVertexSmoother(*this);
0011 }
0012
0013 template class DummyVertexSmoother<5>;
0014 template class DummyVertexSmoother<6>;