Isis 3 Programmer Reference
FramingCamera.h
1#ifndef FramingCamera_h
2#define FramingCamera_h
8/* SPDX-License-Identifier: CC0-1.0 */
9
10#include "Camera.h"
11
12namespace Isis {
32 class FramingCamera : public Camera {
33 public:
34 FramingCamera(Cube &cube);
37
43 virtual CameraType GetCameraType() const {
44 return Framing;
45 }
46 virtual std::pair<iTime, iTime> ShutterOpenCloseTimes(double time,
47 double exposureDuration) = 0;
48 private:
53 };
54};
55
56#endif
virtual double exposureDuration() const
Return the exposure duration for the pixel that the camera is set to.
Definition Camera.cpp:3093
CameraType
This enum defines the types of cameras supported in this class.
Definition Camera.h:358
@ Framing
Framing Camera.
Definition Camera.h:359
IO Handler for Isis Cubes.
Definition Cube.h:168
Generic class for Framing Cameras.
FramingCamera(Cube &cube)
Constructs the FramingCamera object.
virtual std::pair< iTime, iTime > ShutterOpenCloseTimes(double time, double exposureDuration)=0
Returns the shutter open and close times.
virtual CameraType GetCameraType() const
This method returns Framing camera type.
~FramingCamera()
Destroys the FramingCamera Object.
FramingCamera & operator=(const FramingCamera &)
Assigning cameras is not allowed.
FramingCamera(const FramingCamera &)
Copying cameras is not allowed.
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