USGS

Isis 3.0 Developer's Reference (API)

Home

ApolloPanoramicCamera.h
Go to the documentation of this file.
1 #ifndef ApolloPanoramicCamera_h
2 #define ApolloPanoramicCamera_h
3 
27 #include "LineScanCamera.h"
28 
29 
30 namespace Isis {
31  class PvlGroup;
48  public:
50 
53 
60  //this sensor was used on multiple missions so it is necessary to check which Apollo
61  virtual int CkFrameId() const {return m_CkFrameId; }
62 
69  virtual int CkReferenceId() const { return (1); }
70 
77  virtual int SpkReferenceId() const { return (1); }
78 
83 
85  double intOriResidualMax() const { return m_residualMax; }
86 
88  double intOriResidualMean() const { return m_residualMean; }
89 
91  double intOriResidualStdev() const { return m_residualStdev; }
92  private:
94  double m_residualMean;
95 
97  double m_residualMax;
98 
100  double m_residualStdev;
101 
103  int m_CkFrameId;
104  };
105 };
106 
107 #endif