mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
ADIobservation.cpp
Go to the documentation of this file.
1/** \file ADIobservation.cpp
2 * \author Jared R. Males
3 * \brief Instantiates the ADI high contrast imaging data type.
4 * \ingroup hc_imaging_files
5 * \ingroup image_processing_files
6 *
7 */
8
11
12namespace mx
13{
14namespace improc
15{
16namespace HCI
17{
18std::string fakeMethodsStr( int method )
19{
20 if( method == single )
21 {
22 return "single";
23 }
24 else if( method == list )
25 {
26 return "list";
27 }
28 else
29 {
30 return "unknown";
31 }
32}
33
34int fakeMethodFmStr( const std::string &method )
35{
36 if( method == "single" )
37 {
38 return single;
39 }
40 else if( method == "list" )
41 {
42 return list;
43 }
44 else
45 {
46 return -1;
47 }
48}
49} // namespace HCI
50
51template class ADIobservation<float, ADIDerotator<float>>;
52template class ADIobservation<double, ADIDerotator<double>>;
53
54} // namespace improc
55} // namespace mx
Defines a generic ADI derotator class.
Defines the ADI high contrast imaging data type.
@ single
A single PSF is used.
@ list
A list of PSF files, one per input image, is used.
int fakeMethodFmStr(const std::string &method)
Get the fake injection method from its string name.
std::string fakeMethodsStr(int method)
Get the string name of a fake injection method.
The mxlib c++ namespace.
Definition mxError.hpp:106