#ifndef SPHERICALMATRIX_HPP #define SPHERICALMATRIX_HPP // // $Id: SphericalMatrix.hpp,v 1.5 2000/02/18 22:19:39 hobbs Exp $ // // File: SphericalMatrix.hpp // Purpose: This is a thin shell around MatrixD which converts a (error) matrix // in spherical coordinates to the corresponding matrix in cartesian // and stores this in the MatrixD portion of this class. // Created: 05-JUN-1998 John Hobbs // // $Revision: 1.5 $ // // // Include files #include namespace dgs { // Global definitions class SphericalCoordinate; class SphericalMatrix: public MatrixD { public: SphericalMatrix(const MatrixD& errorMatrix, const SphericalCoordinate& lpt); }; } // Constructors/Destructors #endif //SPHERICALMATRIX_HPP