Isis Developer Reference
FramingCamera.h
Go to the documentation of this file.
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:
52 FramingCamera &operator=(const FramingCamera &);
53 };
54};
55
56#endif
Definition: Camera.h:236
virtual double exposureDuration() const
Return the exposure duration for the pixel that the camera is set to.
Definition: Camera.cpp:3099
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.
Definition: FramingCamera.h:32
virtual std::pair< iTime, iTime > ShutterOpenCloseTimes(double time, double exposureDuration)=0
Returns the shutter open and close times.
Definition: FramingCamera.cpp:42
virtual CameraType GetCameraType() const
This method returns Framing camera type.
Definition: FramingCamera.h:43
~FramingCamera()
Destroys the FramingCamera Object.
Definition: FramingCamera.h:36
virtual iTime time() const
Returns the ephemeris time in seconds which was used to obtain the spacecraft and sun positions.
Definition: Spice.cpp:894
This is free and unencumbered software released into the public domain.
Definition: Apollo.h:16