Isis 3 Programmer Reference
PushFrameCamera.h
Go to the documentation of this file.
1 #ifndef PUSHFRAMECAMERA_H
2 #define PUSHFRAMECAMERA_H
3 
26 #include "Camera.h"
27 
28 namespace Isis {
29  class PushFrameCameraGroundMap;
30  class PushFrameCameraDetectorMap;
31 
51  class PushFrameCamera : public Camera {
52  public:
54 
60  virtual CameraType GetCameraType() const {
61  return PushFrame;
62  }
63 
71  };
72 
80  };
81 
82  private:
87  };
88 };
89 
90 #endif
CameraDetectorMap * DetectorMap()
Returns a pointer to the CameraDetectorMap object.
Definition: Camera.cpp:2858
Push Frame Camera.
Definition: Camera.h:372
PushFrameCamera & operator=(const PushFrameCamera &)
Assigning cameras is not allowed.
PushFrameCameraGroundMap * GroundMap()
Returns a pointer to the PushFrameCameraGroundMap object.
virtual CameraType GetCameraType() const
Returns the PushFrame type of camera, as enumerated in the Camera class.
Convert between undistorted focal plane and ground coordinates.
PushFrameCameraDetectorMap * DetectorMap()
Returns a pointer to the PushFrameCameraDetectorMap object.
Generic class for Push Frame Cameras.
CameraType
This enum defines the types of cameras supported in this class.
Definition: Camera.h:370
CameraGroundMap * GroundMap()
Returns a pointer to the CameraGroundMap object.
Definition: Camera.cpp:2868
Convert between parent image coordinates and detector coordinates.
PushFrameCamera(Isis::Cube &cube)
Constructs the PushFrameCamera object.
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31
IO Handler for Isis Cubes.
Definition: Cube.h:170