Isis 3 Programmer Reference
FramingCamera.h
Go to the documentation of this file.
1 #ifndef FramingCamera_h
2 #define FramingCamera_h
3 
26 #include "Camera.h"
27 
28 namespace Isis {
48  class FramingCamera : public Camera {
49  public:
50  FramingCamera(Cube &cube);
53 
59  virtual CameraType GetCameraType() const {
60  return Framing;
61  }
62  virtual std::pair<iTime, iTime> ShutterOpenCloseTimes(double time,
63  double exposureDuration) = 0;
64  private:
69  };
70 };
71 
72 #endif
FramingCamera(Cube &cube)
Constructs the FramingCamera object.
~FramingCamera()
Destroys the FramingCamera Object.
Definition: FramingCamera.h:52
virtual std::pair< iTime, iTime > ShutterOpenCloseTimes(double time, double exposureDuration)=0
Returns the shutter open and close times.
CameraType
This enum defines the types of cameras supported in this class.
Definition: Camera.h:370
FramingCamera & operator=(const FramingCamera &)
Assigning cameras is not allowed.
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31
virtual CameraType GetCameraType() const
This method returns Framing camera type.
Definition: FramingCamera.h:59
Framing Camera.
Definition: Camera.h:371
virtual double exposureDuration() const
Return the exposure duration for the pixel that the camera is set to.
Definition: Camera.cpp:3075
Generic class for Framing Cameras.
Definition: FramingCamera.h:48
IO Handler for Isis Cubes.
Definition: Cube.h:170
iTime time() const
Returns the ephemeris time in seconds which was used to obtain the spacecraft and sun positions...
Definition: Spice.cpp:809