lsst.meas.base
ga44f29b7aa+acb932b993
Toggle main menu visibility
Loading...
Searching...
No Matches
include
lsst
meas
base
GaussianFlux.h
Go to the documentation of this file.
1
// -*- lsst-c++ -*-
2
/*
3
* LSST Data Management System
4
* Copyright 2008-2015 AURA/LSST.
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_BASE_GaussianFlux_h_INCLUDED
25
#define LSST_MEAS_BASE_GaussianFlux_h_INCLUDED
26
27
#include "lsst/pex/config.h"
28
#include "
lsst/afw/image/Exposure.h
"
29
#include "
lsst/meas/base/Algorithm.h
"
30
#include "
lsst/meas/base/FluxUtilities.h
"
31
#include "
lsst/meas/base/CentroidUtilities.h
"
32
#include "
lsst/meas/base/FlagHandler.h
"
33
#include "
lsst/meas/base/InputUtilities.h
"
34
#include "
lsst/meas/base/Transform.h
"
35
36
namespace
lsst
{
37
namespace
meas
{
38
namespace
base
{
39
43
class
GaussianFluxControl
{
44
public
:
45
LSST_CONTROL_FIELD(
background
,
double
,
"FIXME! NEVER DOCUMENTED!"
);
46
52
GaussianFluxControl
() :
background
(0.0) {}
53
};
54
62
class
GaussianFluxAlgorithm
:
public
SimpleAlgorithm
{
63
public
:
64
// Structures and routines to manage flaghandler
65
static
FlagDefinitionList
const
&
getFlagDefinitions
();
66
static
FlagDefinition
const
FAILURE
;
67
70
typedef
GaussianFluxControl
Control
;
71
72
GaussianFluxAlgorithm
(
Control
const
& ctrl,
std::string
const
& name,
afw::table::Schema
& schema);
73
74
virtual
void
measure
(
afw::table::SourceRecord
& measRecord,
75
afw::image::Exposure<float>
const
& exposure)
const
;
76
77
virtual
void
fail
(
afw::table::SourceRecord
& measRecord,
MeasurementError
* error =
nullptr
)
const
;
78
79
private
:
80
Control
_ctrl;
81
FluxResultKey
_instFluxResultKey;
82
FlagHandler
_flagHandler;
83
SafeCentroidExtractor
_centroidExtractor;
84
SafeShapeExtractor
_shapeExtractor;
85
};
86
87
class
GaussianFluxTransform
:
public
FluxTransform
{
88
public
:
89
typedef
GaussianFluxControl
Control
;
90
GaussianFluxTransform
(
Control
const
& ctrl,
std::string
const
& name,
afw::table::SchemaMapper
& mapper)
91
:
FluxTransform
{name, mapper} {}
92
};
93
94
}
// namespace base
95
}
// namespace meas
96
}
// namespace lsst
97
98
#endif
// !LSST_MEAS_BASE_GaussianFlux_h_INCLUDED
Algorithm.h
CentroidUtilities.h
FlagHandler.h
FluxUtilities.h
InputUtilities.h
Transform.h
This defines the base of measurement transformations.
std::string
lsst::afw::image::Exposure
lsst::afw::table::Schema
lsst::afw::table::SchemaMapper
lsst::afw::table::SourceRecord
lsst::meas::base::FlagDefinitionList
vector-type utility class to build a collection of FlagDefinitions
Definition
FlagHandler.h:60
lsst::meas::base::FlagHandler
Utility class for handling flag fields that indicate the failure modes of an algorithm.
Definition
FlagHandler.h:149
lsst::meas::base::FluxResultKey
A FunctorKey for FluxResult.
Definition
FluxUtilities.h:61
lsst::meas::base::FluxTransform::FluxTransform
FluxTransform(std::string const &name, afw::table::SchemaMapper &mapper)
Definition
FluxUtilities.cc:84
lsst::meas::base::GaussianFluxAlgorithm::FAILURE
static FlagDefinition const FAILURE
Definition
GaussianFlux.h:66
lsst::meas::base::GaussianFluxAlgorithm::getFlagDefinitions
static FlagDefinitionList const & getFlagDefinitions()
Definition
GaussianFlux.cc:42
lsst::meas::base::GaussianFluxAlgorithm::GaussianFluxAlgorithm
GaussianFluxAlgorithm(Control const &ctrl, std::string const &name, afw::table::Schema &schema)
Definition
GaussianFlux.cc:44
lsst::meas::base::GaussianFluxAlgorithm::measure
virtual void measure(afw::table::SourceRecord &measRecord, afw::image::Exposure< float > const &exposure) const
Called to measure a single child source in an image.
Definition
GaussianFlux.cc:53
lsst::meas::base::GaussianFluxAlgorithm::fail
virtual void fail(afw::table::SourceRecord &measRecord, MeasurementError *error=nullptr) const
Handle an exception thrown by the current algorithm by setting flags in the given record.
Definition
GaussianFlux.cc:65
lsst::meas::base::GaussianFluxAlgorithm::Control
GaussianFluxControl Control
A typedef to the Control object for this algorithm, defined above.
Definition
GaussianFlux.h:70
lsst::meas::base::GaussianFluxControl
A C++ control class to handle GaussianFluxAlgorithm's configuration.
Definition
GaussianFlux.h:43
lsst::meas::base::GaussianFluxControl::background
double background
"FIXME! NEVER DOCUMENTED!" ;
Definition
GaussianFlux.h:45
lsst::meas::base::GaussianFluxControl::GaussianFluxControl
GaussianFluxControl()
Default constructor.
Definition
GaussianFlux.h:52
lsst::meas::base::GaussianFluxTransform::GaussianFluxTransform
GaussianFluxTransform(Control const &ctrl, std::string const &name, afw::table::SchemaMapper &mapper)
Definition
GaussianFlux.h:90
lsst::meas::base::GaussianFluxTransform::Control
GaussianFluxControl Control
Definition
GaussianFlux.h:89
lsst::meas::base::MeasurementError
Exception to be thrown when a measurement algorithm experiences a known failure mode.
Definition
exceptions.h:48
lsst::meas::base::SafeCentroidExtractor
Utility class for measurement algorithms that extracts a position from the Centroid slot and handles ...
Definition
InputUtilities.h:39
lsst::meas::base::SafeShapeExtractor
Utility class for measurement algorithms that extracts an ellipse from the Shape slot and handles err...
Definition
InputUtilities.h:90
lsst::meas::base::SimpleAlgorithm
An abstract base classes for which the same implementation can be used for both SingleFrameAlgorithm ...
Definition
Algorithm.h:170
Exposure.h
lsst::meas::base.plugins.GaussianFluxAlgorithm
GaussianFluxAlgorithm
Definition
plugins.py:87
lsst::meas::base
Definition
Algorithm.h:37
lsst::meas
Definition
Algorithm.h:36
lsst
lsst::meas::base::FlagDefinition
Simple class used to define and document flags The name and doc constitute the identity of the FlagDe...
Definition
FlagHandler.h:40
Generated on
for lsst.meas.base by
1.17.0