USGS

Isis 3.0 Developer's Reference (API)

Home

NewHorizonsLeisaCamera.h
Go to the documentation of this file.
1 #ifndef NewHorizonsLeisaCamera_h
2 #define NewHorizonsLeisaCamera_h
3 
23 #include "LineScanCamera.h"
24 
25 #include <QVector>
26 
27 namespace Isis {
41  public:
44 
47 
50  return false;
51  };
52 
59  virtual int CkFrameId() const { return (-98000); }//from NAIF_INSTRUMENT_ID in /usgs/cpkgs/isis3/data/newhorizons/kernels/ck/*.lbl or spacit R or spacit S on ck
60 
67  virtual int CkReferenceId() const { return (1); } //can get from spacit S on ck
68 
75  virtual int SpkReferenceId() const { return (1); } //can get from spacit S on spk
76 
77 
78  void SetBand(const int vband);
79 
80 
81 
82  private:
83  QVector<int> m_originalBand;
84 
85  QVector<double> m_origTransx;
86  QVector<double> m_origTransy;
87  QVector<double> m_origTranss;
88  QVector<double> m_origTransl;
89  };
90 };
91 #endif