STG.cxx

Go to the documentation of this file.
00001 
00012 #include "STG.h"
00013 #include "UnaryTransform.h"
00014 
00015 using namespace hippodraw;
00016 
00017 
00018 STG::STG ( UnaryTransform * z )
00019   : PeriodicBinaryTransform ( z, true, true, false, true,
00020                               -180.0, +180.0,
00021                               - 90.0, + 90.0 )
00022 {
00023   m_name = "STG";
00024   const std::string projType("STG");
00025   double crpix[] = {0, 90}, crval[] = {0,90}, cdelt[] = {1,1};
00026   initwcs (projType, crpix, crval, cdelt, 0, false);
00027 }
00028 
00029 STG::STG ( const STG & t )
00030   :  PeriodicBinaryTransform ( t )
00031 {
00032   const std::string projType("STG");
00033   double crpix[] = {0, 90}, crval[] = {0,90}, cdelt[] = {1,1};
00034   initwcs (projType, crpix, crval, cdelt, 0, false);
00035 }
00036 
00037 STG::~STG ()
00038 {
00039 }
00040 
00041 #ifdef CLONE_DEFECT
00042 TransformBase * STG::clone () const
00043 #else
00044 STG    * STG::clone () const
00045 #endif
00046 {
00047   return new STG ( *this );
00048 }
00049 
00050 
00051 
00052 /* virtual */
00053 double STG::aspectRatio () const
00054 {
00055   return 1.0;
00056 }
00057 
00058 
00059 

Generated for HippoDraw Class Library by doxygen