00001 #include "RecoVertex/VertexTools/interface/DummyVertexSmoother.h" 00002 00003 template <unsigned int N> 00004 CachingVertex<N> DummyVertexSmoother<N>::smooth( const CachingVertex<N> & vertex ) const 00005 { 00006 return vertex; 00007 } 00008 00009 template <unsigned int N> 00010 DummyVertexSmoother<N> * DummyVertexSmoother<N>::clone() const 00011 { 00012 return new DummyVertexSmoother ( * this ); 00013 } 00014 00015 template class DummyVertexSmoother<5>; 00016 template class DummyVertexSmoother<6>;