00001 /* 00002 Arroyo - software for the simulation of electromagnetic wave propagation 00003 through turbulence and optics. 00004 00005 Copyright (c) 2000-2004 California Institute of Technology. Written by 00006 Dr. Matthew Britton. For comments or questions about this software, 00007 please contact the author at mbritton@astro.caltech.edu. 00008 00009 This program is free software; you can redistribute it and/or modify it 00010 under the terms of the GNU General Public License as published by the 00011 Free Software Foundation; either version 2 of the License, or (at your 00012 option) any later version. 00013 00014 This program is provided "as is" and distributed in the hope that it 00015 will be useful, but WITHOUT ANY WARRANTY; without even the implied 00016 warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. In no 00017 event shall California Institute of Technology be liable to any party 00018 for direct, indirect, special, incidental or consequential damages, 00019 including lost profits, arising out of the use of this software and its 00020 documentation, even if the California Institute of Technology has been 00021 advised of the possibility of such damage. The California Institute of 00022 Technology has no obligation to provide maintenance, support, updates, 00023 enhancements or modifications. See the GNU General Public License for 00024 more details. 00025 00026 You should have received a copy of the GNU General Public License along 00027 with this program; if not, write to the Free Software 00028 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. 00029 */ 00030 00031 #ifndef GEMINI_GLAO_MODELS_H 00032 #define GEMINI_GLAO_MODELS_H 00033 00034 #include <three_vector.h> 00035 #include "refractive_atmosphere.h" 00036 00037 namespace Arroyo { 00038 00043 00044 class Gemini_GLAO_study_model : 00045 public refractive_atmospheric_model { 00046 00047 private: 00048 00049 static const bool factory_registration; 00050 00053 string unique_name() const {return(string("Gemini GLAO study model"));}; 00054 00057 Gemini_GLAO_study_model(){}; 00058 00059 public: 00060 00063 Gemini_GLAO_study_model(const Gemini_GLAO_study_model & cn2_model); 00064 00067 Gemini_GLAO_study_model(const char * filename); 00068 00071 Gemini_GLAO_study_model(const iofits & iof); 00072 00078 Gemini_GLAO_study_model(const three_frame & tf, 00079 const string & ground_layer, 00080 const string & focal_anisoplanatism, 00081 bool extended_profile = false, 00082 double outer_scale = -1); 00083 00086 ~Gemini_GLAO_study_model(){}; 00087 00090 Gemini_GLAO_study_model & 00091 operator=(const Gemini_GLAO_study_model & cn2_model); 00092 00097 Gemini_GLAO_study_model * clone() const { 00098 return(new Gemini_GLAO_study_model(*this)); 00099 }; 00100 00103 void read(const char * filename); 00104 00107 void read(const iofits & iof); 00108 00111 void write(const char * filename) const; 00112 00115 void write(iofits & iof) const; 00116 00119 void print(ostream & os, const char * prefix="") const; 00120 00121 }; 00122 00123 } 00124 00125 #endif
1.3.9.1