//----------------------------------------------------------- // File and Version Information: // $Id$ // // Description: // equation of motion for local straight line track rep // // // Environment: // Software developed for the PANDA Detector at FAIR. // // Author List: // Sebastian Neubert TUM (original author) // // //----------------------------------------------------------- #ifndef LSLEQM_HH #define LSLEQM_HH // Base Class Headers ---------------- #include "AbsNystromEQM.h" // Collaborating Class Headers ------- #include // remove if you do not need streaming op // Collaborating Class Declarations -- class AbsBFieldIfc; class LSLEQM : public AbsNystromEQM { public: // Constructors/Destructors --------- LSLEQM(AbsBFieldIfc* f):_field(f){;} ~LSLEQM(){;} TVectorT eval(const TVectorT&u,const TVectorT& uprim, const TVectorT& par); private: AbsBFieldIfc* _field; }; #endif //-------------------------------------------------------------- // $Log$ //--------------------------------------------------------------