CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_0/src/RecoTracker/MeasurementDet/plugins/RecHitPropagator.h

Go to the documentation of this file.
00001 #ifndef RecHitPropagator_H
00002 #define RecHitPropagator_H
00003 
00004 #include "TrackingTools/TrajectoryState/interface/TrajectoryStateOnSurface.h"
00005 
00006 class TransientTrackingRecHit;
00007 class MagneticField;
00008 class Plane;
00009 
00010 class RecHitPropagator {
00011 public:
00012 
00013   TrajectoryStateOnSurface propagate( const TransientTrackingRecHit& hit,
00014                                       const Plane& plane, 
00015                                       const TrajectoryStateOnSurface& ts) const;
00016 
00017 };
00018 
00019 #endif