Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef _DummyVertexTrackUpdator_H_
0002 #define _DummyVertexTrackUpdator_H_
0003 
0004 #include "RecoVertex/VertexPrimitives/interface/VertexTrackUpdator.h"
0005 
0006 /** 
0007  * \class DummyVertexTrackUpdator
0008  * Returns RefCountedVertexTrack unchanged
0009  */
0010 
0011 template <unsigned int N>
0012 class DummyVertexTrackUpdator : public VertexTrackUpdator<N> {
0013 public:
0014   /**
0015    * Computes the constrained track parameters
0016    */
0017   typename CachingVertex<N>::RefCountedVertexTrack update(
0018       const CachingVertex<N>& v, typename CachingVertex<N>::RefCountedVertexTrack t) const override;
0019   DummyVertexTrackUpdator* clone() const override;
0020 };
0021 
0022 #endif