Isis 3 Programmer Reference
ThemisIrCamera.h
Go to the documentation of this file.
1 #ifndef ThemisIrCamera_h
2 #define ThemisIrCamera_h
3 
24 #include "LineScanCamera.h"
25 
26 #include <QString>
27 
28 namespace Isis {
29  class ThemisIrDistortionMap;
30 
66  class ThemisIrCamera : public LineScanCamera {
67  public:
68  // constructors
69  ThemisIrCamera(Cube &cube);
70 
73 
74  // Band dependent
75  void SetBand(const int band);
77  return false;
78  };
79 
86  virtual int CkFrameId() const { return (-53000); }
87 
94  virtual int CkReferenceId() const { return (16); }
95 
102  virtual int SpkReferenceId() const { return (1); }
103 
104  private:
105  double p_etStart;
106  double p_lineRate;
107  double p_bandTimeOffset;
108  QString p_tdiMode;
109  std::vector<int> p_originalBand;
110  };
111 
112 };
113 #endif
void SetBand(const int band)
Change the THEMIS IR camera parameters based on the band number.
THEMIS IR Camera.
virtual int CkFrameId() const
CK frame ID - - Instrument Code from spacit run on CK.
Generic class for Line Scan Cameras.
virtual int CkReferenceId() const
CK Reference ID - J2000.
~ThemisIrCamera()
Destroys the ThemisIrCamera object.
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31
bool IsBandIndependent()
Virtual method that checks if the band is independent.
ThemisIrCamera(Cube &cube)
Constructor for the Themis Ir Camera Model.
virtual int SpkReferenceId() const
SPK Reference ID - J2000.
IO Handler for Isis Cubes.
Definition: Cube.h:170