GammaLib  2.1.0.dev
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
GWcsSIN.hpp
Go to the documentation of this file.
1 /***************************************************************************
2  * GWcsSIN.hpp - Orthographic/synthesis (SIN) projection class *
3  * ----------------------------------------------------------------------- *
4  * copyright (C) 2016 by Juergen Knoedlseder *
5  * ----------------------------------------------------------------------- *
6  * *
7  * This program is free software: you can redistribute it and/or modify *
8  * it under the terms of the GNU General Public License as published by *
9  * the Free Software Foundation, either version 3 of the License, or *
10  * (at your option) any later version. *
11  * *
12  * This program is distributed in the hope that it will be useful, *
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of *
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
15  * GNU General Public License for more details. *
16  * *
17  * You should have received a copy of the GNU General Public License *
18  * along with this program. If not, see <http://www.gnu.org/licenses/>. *
19  * *
20  ***************************************************************************/
21 /**
22  * @file GWcsSIN.hpp
23  * @brief Orthographic/synthesis (SIN) projection class definition
24  * @author Juergen Knoedlseder
25  */
26 
27 #ifndef GWcsSIN_HPP
28 #define GWcsSIN_HPP
29 
30 /* __ Includes ___________________________________________________________ */
31 #include <string>
32 #include "GWcs.hpp"
33 
34 
35 /***********************************************************************//**
36  * @class GWcsSIN
37  *
38  * @brief Orthographic/synthesis (SIN) projection class definition
39  *
40  * This class implements the "orthographic/synthesis" projection for the
41  * World Coordinate System.
42  ***************************************************************************/
43 class GWcsSIN : public GWcs {
44 
45 public:
46  // Constructors and destructors
47  GWcsSIN(void);
48  GWcsSIN(const std::string& coords,
49  const double& crval1, const double& crval2,
50  const double& crpix1, const double& crpix2,
51  const double& cdelt1, const double& cdelt2);
52  GWcsSIN(const GWcsSIN& wcs);
53  virtual ~GWcsSIN(void);
54 
55  // Operators
56  GWcsSIN& operator=(const GWcsSIN& wcs);
57 
58  // Implemented pure virtual base class methods
59  virtual void clear(void);
60  virtual GWcsSIN* clone(void) const;
61  virtual std::string classname(void) const;
62  virtual std::string code(void) const;
63  virtual std::string name(void) const;
64  virtual std::string print(const GChatter& chatter = NORMAL) const;
65 
66 private:
67  // Private methods
68  void init_members(void);
69  void copy_members(const GWcsSIN& wcs);
70  void free_members(void);
71  void prj_set(void) const;
72  void prj_x2s(int nx, int ny, int sxy, int spt,
73  const double* x, const double* y,
74  double* phi, double* theta, int* stat) const;
75  void prj_s2x(int nphi, int ntheta, int spt, int sxy,
76  const double* phi, const double* theta,
77  double* x, double* y, int* stat) const;
78 };
79 
80 
81 /***********************************************************************//**
82  * @brief Return class name
83  *
84  * @return String containing the class name ("GWcsSIN").
85  ***************************************************************************/
86 inline
87 std::string GWcsSIN::classname(void) const
88 {
89  return ("GWcsSIN");
90 }
91 
92 
93 /***********************************************************************//**
94  * @brief Return projection code
95  *
96  * @return Projection code.
97  *
98  * Returns the projection code "SIN".
99  ***************************************************************************/
100 inline
101 std::string GWcsSIN::code(void) const
102 {
103  return "SIN";
104 }
105 
106 
107 /***********************************************************************//**
108  * @brief Return projection name
109  *
110  * @return Projection name.
111  *
112  * Returns the projection name.
113  ***************************************************************************/
114 inline
115 std::string GWcsSIN::name(void) const
116 {
117  return "orthographic/synthesis";
118 }
119 
120 #endif /* GWcsSIN_HPP */
virtual std::string code(void) const
Return projection code.
Definition: GWcsSIN.hpp:101
virtual std::string classname(void) const
Return class name.
Definition: GWcsSIN.hpp:87
Orthographic/synthesis (SIN) projection class definition.
Definition: GWcsSIN.hpp:43
void free_members(void)
Delete class members.
Definition: GWcsSIN.cpp:269
void prj_x2s(int nx, int ny, int sxy, int spt, const double *x, const double *y, double *phi, double *theta, int *stat) const
Pixel-to-spherical deprojection.
Definition: GWcsSIN.cpp:356
virtual GWcsSIN * clone(void) const
Clone projection.
Definition: GWcsSIN.cpp:205
void prj_s2x(int nphi, int ntheta, int spt, int sxy, const double *phi, const double *theta, double *x, double *y, int *stat) const
Generic spherical-to-pixel projection.
Definition: GWcsSIN.cpp:560
virtual std::string name(void) const
Return projection name.
Definition: GWcsSIN.hpp:115
GChatter
Definition: GTypemaps.hpp:33
void copy_members(const GWcsSIN &wcs)
Copy class members.
Definition: GWcsSIN.cpp:259
virtual ~GWcsSIN(void)
Destructor.
Definition: GWcsSIN.cpp:126
void prj_set(void) const
Setup of projection.
Definition: GWcsSIN.cpp:299
virtual void clear(void)
Clear projection.
Definition: GWcsSIN.cpp:183
Abstract world coordinate system base class.
Definition: GWcs.hpp:51
GWcsSIN(void)
Void constructor.
Definition: GWcsSIN.cpp:66
void init_members(void)
Initialise class members.
Definition: GWcsSIN.cpp:247
virtual std::string print(const GChatter &chatter=NORMAL) const
Print projection information.
Definition: GWcsSIN.cpp:217
Abstract world coordinate system base class definition.
GWcsSIN & operator=(const GWcsSIN &wcs)
Assignment operator.
Definition: GWcsSIN.cpp:148