gastro  0.1.0
 All Classes Files Functions Variables Pages
refzp.h
1 #ifndef REFZP__H
2 #define REFZP__H
3 
4 #include <map>
5 #include "ccdimage.h"
6 
7 class RefZP
8 {
9  public:
10  typedef std::map<const CcdImage*,double> CcdMap;
11  typedef CcdMap::iterator CcdMapIterator;
12  typedef CcdMap::const_iterator CcdMapCIterator;
13  CcdMap zp;
14 
15  RefZP( const CcdImageList &CcdImages, const bool UsePrefs=true);
16  bool IsPhotomRef(const CcdImage &C, double &Zp) const;
17 };
18 
19 
20 
21 #endif /* REFZP__H */
handler of an actual image from a single CCD
Definition: ccdimage.h:21