USGS

Isis 3.0 Object Programmers' Reference

Home

LoHighCamera.h
Go to the documentation of this file.
1 #ifndef LoHighCamera_h
2 #define LoHighCamera_h
3 
23 #include "FramingCamera.h"
24 
25 namespace Isis {
61  class LoHighCamera : public FramingCamera {
62  public:
63  LoHighCamera(Cube &cube);
66  virtual std::pair <iTime, iTime> ShutterOpenCloseTimes(double time,
67  double exposureDuration);
74  virtual int CkFrameId() const { return (m_ckFrameId); }
75 
82  virtual int CkReferenceId() const { return (1); }
83 
90  virtual int SpkReferenceId() const { return (1); }
91 
92  private:
93  int m_ckFrameId; // LO 3,4,5 CK frame id
94  };
95 };
96 #endif