Isis 3 Programmer Reference
NewHorizonsMvicFrameCamera.h
1#ifndef NewHorizonsMvicFrameCamera_h
2#define NewHorizonsMvicFrameCamera_h
3
10/* SPDX-License-Identifier: CC0-1.0 */
11
12#include "FramingCamera.h"
13
14#include <QString>
15
16namespace Isis {
34 public:
37
38
41
42
43 // Sets the band to the band number given
44 void SetBand(const int vband);
45
46
47// /**
48// * The camera model is band dependent, so this method returns false
49// *
50// * @return bool False
51// */
55
56
57 virtual std::pair <iTime, iTime> ShutterOpenCloseTimes(double time,
58 double exposureDuration);
59
60
67 virtual int CkFrameId() const { return (-98000); }
68
69
76 virtual int CkReferenceId() const { return (1); }
77
78
85 virtual int SpkReferenceId() const { return (1); }
86
87 private:
88 QList<int> m_originalBand;
89 QList<QString> m_utcTime;
90 double m_etStart;
91 double m_exposure;
92 };
93};
94#endif
virtual double exposureDuration() const
Return the exposure duration for the pixel that the camera is set to.
Definition Camera.cpp:3093
IO Handler for Isis Cubes.
Definition Cube.h:168
Generic class for Framing Cameras.
This is the camera model for the New Horizons MVIC Frame mode Camera.
virtual int SpkReferenceId() const
SPK Reference ID - J2000.
virtual int CkFrameId() const
CK frame ID - - Instrument Code from spacit run on CK.
virtual int CkReferenceId() const
CK Reference ID - J2000.
void SetBand(const int vband)
Sets the band in the camera model.
NewHorizonsMvicFrameCamera(Cube &cube)
Create a NewHorizonsMvicFrameCamera object.
~NewHorizonsMvicFrameCamera()
Destroys the NewHorizonsMvicFrameCamera object.
virtual std::pair< iTime, iTime > ShutterOpenCloseTimes(double time, double exposureDuration)
Returns the shutter open and close times.
virtual iTime time() const
Returns the ephemeris time in seconds which was used to obtain the spacecraft and sun positions.
Definition Spice.cpp:891
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16