GammaLib 2.0.0
Loading...
Searching...
No Matches
GWcsSTG.hpp
Go to the documentation of this file.
1/***************************************************************************
2 * GWcsSTG.hpp - Stereographic (STG) projection class *
3 * ----------------------------------------------------------------------- *
4 * copyright (C) 2011-2015 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 GWcsSTG.hpp
23 * @brief Stereographic (STG) projection class definition
24 * @author Juergen Knoedlseder
25 */
26
27#ifndef GWCSSTG_HPP
28#define GWCSSTG_HPP
29
30/* __ Includes ___________________________________________________________ */
31#include <string>
32#include "GWcs.hpp"
33
34
35/***********************************************************************//**
36 * @class GWcsSTG
37 *
38 * @brief Stereographic (STG) projection class definition
39 *
40 * This class implements the "stereographic" projection for the World
41 * Coordinate System.
42 ***************************************************************************/
43class GWcsSTG : public GWcs {
44
45public:
46 // Constructors and destructors
47 GWcsSTG(void);
48 GWcsSTG(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 GWcsSTG(const GWcsSTG& wcs);
53 virtual ~GWcsSTG(void);
54
55 // Operators
56 GWcsSTG& operator=(const GWcsSTG& wcs);
57
58 // Implemented pure virtual base class methods
59 virtual void clear(void);
60 virtual GWcsSTG* 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
66private:
67 // Private methods
68 void init_members(void);
69 void copy_members(const GWcsSTG& 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 ("GWcsSTG").
85 ***************************************************************************/
86inline
87std::string GWcsSTG::classname(void) const
88{
89 return ("GWcsSTG");
90}
91
92
93/***********************************************************************//**
94 * @brief Return projection code
95 *
96 * @return Projection code.
97 *
98 * Returns the projection code "STG".
99 ***************************************************************************/
100inline
101std::string GWcsSTG::code(void) const
102{
103 return "STG";
104}
105
106
107/***********************************************************************//**
108 * @brief Return projection name
109 *
110 * @return Projection name.
111 *
112 * Returns the projection name.
113 ***************************************************************************/
114inline
115std::string GWcsSTG::name(void) const
116{
117 return "stereographic";
118}
119
120#endif /* GWCSSTG_HPP */
GChatter
Definition GTypemaps.hpp:33
@ NORMAL
Definition GTypemaps.hpp:36
Abstract world coordinate system base class definition.
Stereographic (STG) projection class definition.
Definition GWcsSTG.hpp:43
GWcsSTG(void)
Void constructor.
Definition GWcsSTG.cpp:64
void prj_set(void) const
Setup of projection.
Definition GWcsSTG.cpp:291
GWcsSTG & operator=(const GWcsSTG &wcs)
Assignment operator.
Definition GWcsSTG.cpp:146
virtual void clear(void)
Clear projection.
Definition GWcsSTG.cpp:181
virtual std::string code(void) const
Return projection code.
Definition GWcsSTG.hpp:101
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 GWcsSTG.cpp:422
virtual ~GWcsSTG(void)
Destructor.
Definition GWcsSTG.cpp:124
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 GWcsSTG.cpp:338
virtual GWcsSTG * clone(void) const
Clone projection.
Definition GWcsSTG.cpp:203
void free_members(void)
Delete class members.
Definition GWcsSTG.cpp:267
virtual std::string classname(void) const
Return class name.
Definition GWcsSTG.hpp:87
virtual std::string print(const GChatter &chatter=NORMAL) const
Print projection information.
Definition GWcsSTG.cpp:215
virtual std::string name(void) const
Return projection name.
Definition GWcsSTG.hpp:115
void init_members(void)
Initialise class members.
Definition GWcsSTG.cpp:245
void copy_members(const GWcsSTG &wcs)
Copy class members.
Definition GWcsSTG.cpp:257
Abstract world coordinate system base class.
Definition GWcs.hpp:51