Isis 3 Programmer Reference
NewHorizonsLeisaCamera.h
1#ifndef NewHorizonsLeisaCamera_h
2#define NewHorizonsLeisaCamera_h
3
10/* SPDX-License-Identifier: CC0-1.0 */
11
12#include "LineScanCamera.h"
13
14#include <QVector>
15
16namespace Isis {
37 public:
40
43
46 return false;
47 };
48
55 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
56
63 virtual int CkReferenceId() const { return (1); } //can get from spacit S on ck
64
71 virtual int SpkReferenceId() const { return (1); } //can get from spacit S on spk
72
73
74 void SetBand(const int vband);
75
76 private:
77 QVector<int> m_originalBand;
78
79 QVector<double> m_origTransx;
80 QVector<double> m_origTransy;
81 QVector<double> m_origTranss;
82 QVector<double> m_origTransl;
83 };
84};
85#endif
IO Handler for Isis Cubes.
Definition Cube.h:168
Generic class for Line Scan Cameras.
This is the camera model for LEISA, New Hoirzon's infrared Spectrometer.
virtual int CkReferenceId() const
CK Reference ID -.
QVector< double > m_origTransl
The original transl affine coefficients from the iak.
NewHorizonsLeisaCamera(Cube &cube)
Create a NewHorizonsLeisaCamera object.
QVector< double > m_origTranss
The original transs affine coefficients from the iak.
void SetBand(const int vband)
Change the New Horizons camera parameters based on the band number.
QVector< int > m_originalBand
Stores the band bin OriginalBand keyword values.
virtual int SpkReferenceId() const
SPK Reference ID - J2000.
QVector< double > m_origTransy
The original transy affine coefficients from the iak.
bool IsBandIndependent()
Flag that NewHorizonsLeisaCamera is band-dependent.
QVector< double > m_origTransx
The original transx affine coefficients from the iak.
~NewHorizonsLeisaCamera()
Destroys the NewHorizonsLeisaCamera object.
virtual int CkFrameId() const
CK frame ID - - Instrument Code from spacit run on CK.
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16