00001 // $Id: TrackFastParabolicExtrapolator.h,v 1.1 2005/03/16 14:10:05 hernando Exp $ 00002 #ifndef TRACKFASTPARABOLICEXTRAPOLATOR_H 00003 #define TRACKFASTPARABOLICEXTRAPOLATOR_H 1 00004 00005 // Include file 00006 #include "TrackParabolicExtrapolator.h" 00007 00020 class TrackFastParabolicExtrapolator: public TrackParabolicExtrapolator { 00021 00022 public: 00024 TrackFastParabolicExtrapolator( const std::string& type, 00025 const std::string& name, 00026 const IInterface* parent); 00028 virtual ~TrackFastParabolicExtrapolator(); 00029 00030 private: 00031 00033 void updateTransportMatrix( const double dz, 00034 State& pState); 00035 00036 }; 00037 00038 #endif // TRACKFASTPARABOLICEXTRAPOLATOR_H 00039 00040 00041 00042 00043