geirs2Panic  Richard J. Mathar
Fits header keyword batch editor
 All Classes Files Functions Variables Macros Pages
FitsImg2Asc.h
Go to the documentation of this file.
1 #ifndef FITSIMG2ASC_H
2 #define FITSIMG2ASC_H
3 /*
4 * MPIA - GEIRS project
5 *
6 * "@(#) $Id$"
7 *
8 */
9 
10 #include <string>
11 #include <vector>
12 
16 #include <CCfits/CCfits>
17 
18 using namespace std ;
19 using namespace CCfits ;
20 
25 class FitsImg2Asc {
26 
27 public:
30  vector<string> iname ;
31 
32  FitsImg2Asc(char *fitsInname) ;
33  FitsImg2Asc(int argc, char *fitsInname[]) ;
34  ~FitsImg2Asc() ;
35 
36  void dump() ;
37  void dump(int range[4], FITS * ifits) ;
38  void dump(string range) ;
39 
40  void histo(int Nbin, double range[2], string detsize, const bool doLogHist,const string epsout, const string txtout) ;
41  void badMask(double range[2], string detsize, const string fitsout,int flipxy, string txtout, bool iraf) ;
42 
43 protected:
44 
45 private:
46 
47 } ; /* FitsImg2Asc */
48 
49 #endif /* FITSIMG2ASC_H */
Definition: FitsImg2Asc.h:25
vector< string > iname
Name of the input file.
Definition: FitsImg2Asc.h:30