Isis 3 Programmer Reference
ThemisVisCamera.h
1#ifndef ThemisVisCamera_h
2#define ThemisVisCamera_h
3
10/* SPDX-License-Identifier: CC0-1.0 */
11
12#include "PushFrameCamera.h"
13
14namespace Isis {
74 public:
75 // constructor
76 ThemisVisCamera(Cube &cube);
77
80
81 // Sets the band to the band number given
82 void SetBand(const int band);
83
84 double BandEphemerisTimeOffset(int vband);
85
86 bool IsBandIndependent();
87 virtual int CkFrameId() const;
88 virtual int CkReferenceId() const;
89 virtual int SpkReferenceId() const;
90
91 private:
92 double p_etStart;
97 QList<int> p_filterNumber;
101 };
102};
103
104#endif
IO Handler for Isis Cubes.
Definition Cube.h:168
Generic class for Push Frame Cameras.
THEMIS VIS Camera Model.
bool IsBandIndependent()
The camera model is band dependent (i.e.
int p_nframes
Number of frames in whole image.
double p_etStart
Ephemeris Start iTime.
virtual int SpkReferenceId() const
SPK Reference ID - J2000.
double BandEphemerisTimeOffset(int vband)
Calculates time offset for the given cube band number.
~ThemisVisCamera()
Destroys the Themis Vis Camera object.
void SetBand(const int band)
Sets the band in the camera model.
virtual int CkFrameId() const
CK frame ID - - Instrument Code from spacit run on CK.
double p_bandTimeOffset
Offset iTime for Band.
virtual int CkReferenceId() const
CK Reference ID - MARSIAU.
double p_interframeDelay
Interframe Delay value from labels.
ThemisVisCamera(Cube &cube)
Constructor for the Themis Vis Camera Model.
QList< int > p_filterNumber
List of filter number values from the Instrument BandBin group that correspond to each band in the cu...
double p_exposureDur
Exposure Duration value from labels.
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16