LSSTApplications
10.0-2-g4f67435,11.0.rc2+1,11.0.rc2+12,11.0.rc2+3,11.0.rc2+4,11.0.rc2+5,11.0.rc2+6,11.0.rc2+7,11.0.rc2+8
LSSTDataManagementBasePackage
Main Page
Related Pages
Modules
Namespaces
Classes
Files
Examples
File List
File Members
home
lsstsw
stack
Linux64
afw
11.0.rc2+4
include
lsst
afw
geom
TransformMap.h
Go to the documentation of this file.
1
/*
2
* LSST Data Management System
3
* Copyright 2014 LSST Corporation.
4
*
5
* This product includes software developed by the
6
* LSST Project (http://www.lsst.org/).
7
*
8
* This program is free software: you can redistribute it and/or modify
9
* it under the terms of the GNU General Public License as published by
10
* the Free Software Foundation, either version 3 of the License, or
11
* (at your option) any later version.
12
*
13
* This program is distributed in the hope that it will be useful,
14
* but WITHOUT ANY WARRANTY; without even the implied warranty of
15
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16
* GNU General Public License for more details.
17
*
18
* You should have received a copy of the LSST License Statement and
19
* the GNU General Public License along with this program. If not,
20
* see <http://www.lsstcorp.org/LegalNotices/>.
21
*/
22
23
#if !defined(LSST_AFW_GEOM_TRANSFORMMAP_H)
24
#define LSST_AFW_GEOM_TRANSFORMMAP_H
25
26
#include <string>
27
#include <utility>
28
#include <vector>
29
#include <map>
30
#include "
lsst/afw/geom/Point.h
"
31
#include "
lsst/afw/geom/XYTransform.h
"
32
33
namespace
lsst {
34
namespace
afw {
35
namespace
geom {
36
64
template
<
typename
CoordSysT>
65
class
TransformMap
{
66
public
:
67
typedef
std::map<CoordSysT, CONST_PTR(XYTransform)>
Transforms
;
68
typedef
CoordSysT
CoordSys
;
// needed by SWIG; see TransformMap.i
69
79
explicit
TransformMap
(
80
CoordSysT
const
&nativeCoordSys,
81
Transforms
const
&transforms
82
);
84
86
explicit
TransformMap
();
87
95
Point2D
transform
(
96
Point2D
const
&fromPoint,
97
CoordSysT
const
&fromSys,
98
CoordSysT
const
&toCoordSys
99
)
const
;
100
106
std::vector<Point2D>
transform
(
107
std::vector<Point2D>
const
&pointList,
108
CoordSysT
const
&fromCoordSys,
109
CoordSysT
const
&toCoordSys
110
)
const
;
111
112
CoordSysT
getNativeCoordSys
()
const
{
return
_nativeCoordSys
; }
113
119
std::vector<CoordSysT>
getCoordSysList
()
const
;
120
127
bool
contains
(
128
CoordSysT
const
&coordSys
129
)
const
;
130
138
CONST_PTR
(
XYTransform
) operator[](
139
CoordSysT const &coordSys
140
) const;
141
142
typename
Transforms
::const_iterator
begin
()
const
{
return
_transforms
.begin(); }
143
144
typename
Transforms::const_iterator
end
()
const
{
return
_transforms
.end(); }
145
146
size_t
size
()
const
{
return
_transforms
.size(); }
147
148
private
:
149
CoordSysT
_nativeCoordSys
;
150
Transforms
_transforms
;
151
};
152
153
}}}
154
155
#endif
lsst.afw.geom::TransformMap
Definition:
TransformMap.h:65
lsst.afw.geom::TransformMap::begin
Transforms::const_iterator begin() const
Definition:
TransformMap.h:142
Point.h
A coordinate class intended to represent absolute positions.
lsst.afw.geom::TransformMap::size
size_t size() const
Definition:
TransformMap.h:146
CONST_PTR
#define CONST_PTR(...)
Definition:
base.h:47
lsst.afw.geom::TransformMap::getCoordSysList
std::vector< CoordSysT > getCoordSysList() const
Definition:
TransformMapImpl.h:123
lsst.afw.geom::Point< double, 2 >
lsst.afw.geom::TransformMap::contains
bool contains(CoordSysT const &coordSys) const
Definition:
TransformMapImpl.h:146
lsst.afw.geom::TransformMap::_nativeCoordSys
CoordSysT _nativeCoordSys
native coordinate system
Definition:
TransformMap.h:149
lsst.afw.geom::TransformMap::end
Transforms::const_iterator end() const
Definition:
TransformMap.h:144
lsst.afw.geom::TransformMap::_transforms
Transforms _transforms
map of coordSys: XYTransform
Definition:
TransformMap.h:150
lsst.afw.geom::TransformMap::getNativeCoordSys
CoordSysT getNativeCoordSys() const
Definition:
TransformMap.h:112
lsst.afw.geom::TransformMap::TransformMap
TransformMap()
null implementation to make SWIG willing to wrap a map that contains these
Definition:
TransformMapImpl.h:66
lsst.afw.geom::TransformMap::CoordSys
CoordSysT CoordSys
Definition:
TransformMap.h:68
lsst.afw.geom::XYTransform
Virtual base class for 2D transforms.
Definition:
XYTransform.h:48
lsst.afw.geom::TransformMap::Transforms
std::map< CoordSysT, boost::shared_ptr< XYTransform const > > Transforms
Definition:
TransformMap.h:67
lsst.afw.geom::TransformMap::transform
Point2D transform(Point2D const &fromPoint, CoordSysT const &fromSys, CoordSysT const &toCoordSys) const
Definition:
TransformMapImpl.h:70
XYTransform.h
Class representing an invertible 2D transform.
Generated on Wed Sep 16 2015 13:35:24 for LSSTApplications by
1.8.5