00001 #include "RecoVertex/VertexTools/interface/DummyVertexTrackUpdator.h" 00002 00003 00004 template <unsigned int N> 00005 typename CachingVertex<N>::RefCountedVertexTrack 00006 DummyVertexTrackUpdator<N>::update(const CachingVertex<N> & v, 00007 typename CachingVertex<N>::RefCountedVertexTrack t) const 00008 { 00009 return t; 00010 } 00011 00012 00013 template <unsigned int N> 00014 DummyVertexTrackUpdator<N> * DummyVertexTrackUpdator<N>::clone() const 00015 { 00016 return new DummyVertexTrackUpdator(*this); 00017 } 00018 00019 template class DummyVertexTrackUpdator<5>; 00020 template class DummyVertexTrackUpdator<6>;