Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:31:34

0001 #ifndef TrajectoryExtrapolatorToLine_h_
0002 #define TrajectoryExtrapolatorToLine_h_
0003 
0004 #include "TrackingTools/GeomPropagators/interface/Propagator.h"
0005 #include "TrackingTools/TrajectoryState/interface/TrajectoryStateOnSurface.h"
0006 #include "DataFormats/GeometrySurface/interface/Line.h"
0007 
0008 class TrajectoryExtrapolatorToLine {
0009 public:
0010   /// extrapolation with user-supplied propagator
0011   TrajectoryStateOnSurface extrapolate(const FreeTrajectoryState& fts, const Line& L, const Propagator& p) const;
0012 };
0013 
0014 #endif