Skip to content
Snippets Groups Projects
Select Git revision
  • 6a4de281f03518bd2854d8d8708e61f3fee2103a
  • dev default protected
  • new_pvl_core
  • 8.0-test
  • lts-testing
  • revert-5695-ideal_serial
  • 9.0
  • 9.0.0_RC2
  • 8.0
  • 8.0.5_LTS
  • code8.3.0
  • 9.0.0
  • 9.0.0_RC1
  • gdal_pvl
  • Kelvinrr-patch-3
  • Kelvinrr-patch-2
  • 8.3
  • pvl_core
  • 8.2
  • 8.1
  • Kelvinrr-patch-1
  • 8.0.4
  • 8.3.0
  • 8.2.0
  • 8.1.0
  • 8.0.3
  • 8.0.2
  • 8.0.1
  • 8.0.0
  • 8.1.0_RC2
  • 8.1.0_RC1
  • 8.0.0_RC2
  • 8.0.0_RC1
  • 7.2.0
  • 7.1.0
  • 7.0.0
  • 7.2.0_RC1
  • 7.1.0_RC1
  • 7.0.0_RC2
  • 7.0.0_RC1
  • 6.0.0
41 results

KaguyaTcCamera.h

Blame
  • KaguyaTcCamera.h 1.43 KiB
    #ifndef KaguyaTcCamera_h
    #define KaguyaTcCamera_h
    /**
     * @file
     *
     *   Unless noted otherwise, the portions of Isis written by the USGS are public
     *   domain. See individual third-party library and package descriptions for
     *   intellectual property information,user agreements, and related information.
     *
     *   Although Isis has been used by the USGS, no warranty, expressed or implied,
     *   is made by the USGS as to the accuracy and functioning of such software
     *   and related material nor shall the fact of distribution constitute any such
     *   warranty, and no responsibility is assumed by the USGS in connection
     *   therewith.
     *
     *   For additional information, launch
     *   $ISISROOT/doc//documents/Disclaimers/Disclaimers.html in a browser or see
     *   the Privacy & Disclaimers page on the Isis website,
     *   http://isis.astrogeology.usgs.gov, and the USGS privacy and disclaimers on
     *   http://www.usgs.gov/privacy.html.
     */
    
    #include "FramingCamera.h"
    
    namespace Isis {
    
      class KaguyaTcCamera : public LineScanCamera {
        public:
          KaguyaTcCamera(Cube &cube);
          //! Destroys the KaguyaTcCamera object.
          ~KaguyaTcCamera() {};
          virtual std::pair <iTime, iTime> ShutterOpenCloseTimes(double time,
                                                                 double exposureDuration);
    
           virtual int CkFrameId() const;
           virtual int CkReferenceId() const;
           virtual int SpkReferenceId() const;
    
    
      };
    };
    #endif