/*************************************************************************** amclookuptable.h - description ------------------- begin : Sun Sep 28 2003 copyright : (C) 2003 by Martin Merck email : merck@astro.uni-wuerzburg.de ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef AMCLOOKUPTABLE_H #define AMCLOOKUPTABLE_H #include /** *@author Martin Merck */ class AMCLookUpTable { public: public: static QString findLUT( double p_dZd, double p_dAz ); /** No descriptions */ static void saveLUT( double p_dZd, double p_dAz ); /** No descriptions */ static void readLUT( const QString& p_qsFileName ); private: // Private attributes }; #endif