LSSTApplications  11.0-13-gbb96280,12.1+18,12.1+7,12.1-1-g14f38d3+72,12.1-1-g16c0db7+5,12.1-1-g5961e7a+84,12.1-1-ge22e12b+23,12.1-11-g06625e2+4,12.1-11-g0d7f63b+4,12.1-19-gd507bfc,12.1-2-g7dda0ab+38,12.1-2-gc0bc6ab+81,12.1-21-g6ffe579+2,12.1-21-gbdb6c2a+4,12.1-24-g941c398+5,12.1-3-g57f6835+7,12.1-3-gf0736f3,12.1-37-g3ddd237,12.1-4-gf46015e+5,12.1-5-g06c326c+20,12.1-5-g648ee80+3,12.1-5-gc2189d7+4,12.1-6-ga608fc0+1,12.1-7-g3349e2a+5,12.1-7-gfd75620+9,12.1-9-g577b946+5,12.1-9-gc4df26a+10
LSSTDataManagementBasePackage
PcaPsf.h
Go to the documentation of this file.
1 // -*- lsst-c++ -*-
2 /*
3  * LSST Data Management System
4  * Copyright 2008-2013 LSST Corporation.
5  *
6  * This product includes software developed by the
7  * LSST Project (http://www.lsst.org/).
8  *
9  * This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the LSST License Statement and
20  * the GNU General Public License along with this program. If not,
21  * see <http://www.lsstcorp.org/LegalNotices/>.
22  */
23 
24 #ifndef LSST_MEAS_ALGORITHMS_PcaPsf_h_INCLUDED
25 #define LSST_MEAS_ALGORITHMS_PcaPsf_h_INCLUDED
26 
28 
29 namespace lsst { namespace meas { namespace algorithms {
30 
35 public:
36 
43  explicit PcaPsf(
46  );
47 
49  virtual PTR(afw::detection::Psf) clone() const;
50 
53 
54 private:
55 
56  // Name used in table persistence; the rest of is implemented by KernelPsf.
57  virtual std::string getPersistenceName() const { return "PcaPsf"; }
58 
60 
61  template <class Archive>
62  void serialize(Archive&, unsigned int const) {
63  boost::serialization::void_cast_register<PcaPsf,
64  lsst::afw::detection::Psf>(static_cast<PcaPsf*>(0), static_cast<lsst::afw::detection::Psf*>(0));
65  }
66 
67 };
68 
69 }}}
70 
71 namespace boost {
72 namespace serialization {
73 
74 template <class Archive>
75 inline void save_construct_data(
76  Archive& ar, lsst::meas::algorithms::PcaPsf const* p,
77  unsigned int const) {
78  lsst::afw::math::LinearCombinationKernel const* kernel = p->getKernel().get();
79  ar << make_nvp("kernel", kernel);
81  ar << make_nvp("averagePositionX", averagePosition.getX());
82  ar << make_nvp("averagePositionY", averagePosition.getY());
83 }
84 
85 template <class Archive>
86 inline void load_construct_data(
87  Archive& ar, lsst::meas::algorithms::PcaPsf* p,
88  unsigned int const) {
90  ar >> make_nvp("kernel", kernel);
91  double x=0.0, y=0.0;
92  ar >> make_nvp("averagePositionX", x);
93  ar >> make_nvp("averagePositionY", y);
96 }
97 
98 }} // namespace boost::serialization
99 
100 #endif // !LSST_MEAS_ALGORITHMS_PcaPsf_h_INCLUDED
int y
virtual std::string getPersistenceName() const
Return the unique name used to persist this object and look up its factory.
Definition: PcaPsf.h:57
A Psf defined by a Kernel.
Definition: KernelPsf.h:33
friend class boost::serialization::access
Definition: PcaPsf.h:59
Represent a PSF as a linear combination of PCA (== Karhunen-Loeve) basis functions.
Definition: PcaPsf.h:34
boost::shared_ptr< afw::math::LinearCombinationKernel const > getKernel() const
PcaPsf always has a LinearCombinationKernel, so we can override getKernel to make it more useful...
A kernel that is a linear combination of fixed basis kernels.
Definition: Kernel.h:811
void load_construct_data(Archive &ar, lsst::afw::math::DeltaFunctionKernel *k, unsigned int const file_version)
Definition: Kernel.h:1171
double x
virtual afw::geom::Point2D getAveragePosition() const
Return average position of stars; used as default position.
Definition: KernelPsf.cc:30
void serialize(Archive &, unsigned int const)
Definition: PcaPsf.h:62
#define PTR(...)
Definition: base.h:41
tbl::PointKey< double > averagePosition
Definition: CoaddPsf.cc:352
virtual boost::shared_ptr< afw::detection::Psf > clone() const
Polymorphic deep copy; should usually be unnecessary as Psfs are immutable.x.
A polymorphic base class for representing an image&#39;s Point Spread Function.
Definition: Psf.h:68
PcaPsf(boost::shared_ptr< afw::math::LinearCombinationKernel > kernel, afw::geom::Point2D const &averagePosition=afw::geom::Point2D())
Constructor for a PcaPsf.
A CRTP facade class for subclasses of Persistable.
Definition: Persistable.h:180
void save_construct_data(Archive &ar, lsst::afw::math::DeltaFunctionKernel const *k, unsigned int const file_version)
Definition: Kernel.h:1157