#ifndef CYLINDRICALMATRIX_HPP #define CYLINDRICALMATRIX_HPP // // $Id: CylindricalMatrix.hpp,v 1.5 2000/02/18 22:19:38 hobbs Exp $ // // File: CylindricalMatrix.hpp // Purpose: A thin shell over the Zoom LinearAlgebra MatrixD which reminds // users that they are instantiing a Matrix in a cylindrical basis. // The input matrix is transformed into Cartesian coordinates at // the specified point using the Jacobian derivative matrix. // Created: 04-JUN-1998 John Hobbs // // $Revision: 1.5 $ // // // Include files #include // Global definitions namespace dgs { class CylindricalCoordinate; class CylindricalMatrix: public MatrixD { public: CylindricalMatrix(const MatrixD& errorMatrix, const CylindricalCoordinate& lpt); }; } // Constructors/Destructors #endif //CYLINDRICALMATRIX_HPP