Isis 3 Programmer Reference
MsiCamera.h
1#ifndef MsiCamera_h
2
9/* SPDX-License-Identifier: CC0-1.0 */
10
11#include "FramingCamera.h"
12
13namespace Isis {
50 class MsiCamera : public FramingCamera {
51 public:
52 MsiCamera(Cube &cube);
53 ~MsiCamera();
54 virtual std::pair <iTime, iTime> ShutterOpenCloseTimes(double time,
55 double exposureDuration);
56 virtual int CkFrameId() const;
57 virtual int CkReferenceId() const;
58 virtual int SpkReferenceId() const;
59 };
60};
61#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.
NEAR Shoemaker MSI Camera Model.
Definition MsiCamera.h:50
virtual int SpkReferenceId() const
SPK Target ID - Target Body value for NEAR Shoemaker from spacit run on SPK.
MsiCamera(Cube &cube)
Constructs an MsiCamera object using the image labels.
Definition MsiCamera.cpp:40
virtual int CkReferenceId() const
CK Reference ID - Reference Frame value for J2000 from spacit run on CK.
~MsiCamera()
Destroys the MsiCamera object.
virtual int CkFrameId() const
CK frame ID - Instrument Code from spacit run on CK For more details, read the Camera class documenta...
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