casacore
|
StokesConverter converts any set of polarizations into any other one. More...
#include <StokesConverter.h>
Public Member Functions | |
StokesConverter () | |
default constructor, does not set up a conversion More... | |
StokesConverter (const Vector< Int > &out, const Vector< Int > &in, Bool rescale=False) | |
Set up a conversion from in to out. More... | |
~StokesConverter () | |
desctructor More... | |
StokesConverter (const StokesConverter &other) | |
Copy constructor. More... | |
StokesConverter & | operator= (const StokesConverter &other) |
Assignment,. More... | |
void | setConversion (const Vector< Int > &out, const Vector< Int > &in, Bool rescale=False) |
Change or Set the conversion. More... | |
void | convert (Array< Complex > &out, const Array< Complex > &in) const |
convert data, first dimension of input must match that of the input conversion vector used to set up the conversion. More... | |
void | convert (Array< Bool > &out, const Array< Bool > &in) const |
convert flags, first dimension of input must match that of the input conversion vector used to set up the conversion. More... | |
void | convert (Array< Float > &out, const Array< Float > &in, Bool sigma=False) const |
convert weights, first dimension of input must match that of the input conversion vector used to set up the conversion. More... | |
void | invert (Array< Bool > &out, const Array< Bool > &in) const |
invert flags, first dimension of input must match that of the output conversion vector used to set up the conversion. More... | |
Protected Member Functions | |
void | initConvMatrix () |
initialize the polarization conversion matrix More... | |
Private Attributes | |
Vector< Int > | in_p |
Vector< Int > | out_p |
Bool | rescale_p |
Matrix< Complex > | conv_p |
Matrix< Complex > | iquvConv_p |
Bool | doIQUV_p |
Matrix< Bool > | flagConv_p |
Matrix< Float > | wtConv_p |
Matrix< Complex > | polConv_p |
StokesConverter converts any set of polarizations into any other one.
Public interface
StokesConverter is a class that converts Stokes Parameters
This class is used to convert polarizations from one system to another. First the conversion wanted is specified and then large blocks of data can be converted.
Polarization conversion is needed in various places. It makes sense to provide all conversion in one place.
Definition at line 109 of file StokesConverter.h.
casacore::StokesConverter::StokesConverter | ( | ) |
default constructor, does not set up a conversion
casacore::StokesConverter::StokesConverter | ( | const Vector< Int > & | out, |
const Vector< Int > & | in, | ||
Bool | rescale = False |
||
) |
Set up a conversion from in to out.
The in and out vectors contain a list of polarization present/wanted in that order. The in vector should match the data to convert. (CORR_TYPE column in SPECTRAL_WINDOW table contains this info) The rescale option will correct for crosscorrelation data that has been scaled to the level Stokes I (common practice in radioastronomy: even though officially I=XX+YY, in practice we need to do I=(XX+YY)/2, set rescale to True to do the latter).
casacore::StokesConverter::~StokesConverter | ( | ) |
desctructor
casacore::StokesConverter::StokesConverter | ( | const StokesConverter & | other | ) |
Copy constructor.
void casacore::StokesConverter::convert | ( | Array< Complex > & | out, |
const Array< Complex > & | in | ||
) | const |
convert data, first dimension of input must match that of the input conversion vector used to set up the conversion.
Output is resized as needed.
convert flags, first dimension of input must match that of the input conversion vector used to set up the conversion.
Output is resized as needed. All output depending on a flagged input will be flagged.
void casacore::StokesConverter::convert | ( | Array< Float > & | out, |
const Array< Float > & | in, | ||
Bool | sigma = False |
||
) | const |
convert weights, first dimension of input must match that of the input conversion vector used to set up the conversion.
Output is resized as needed. Set sigma to True when converting sigma's using this routine.
|
protected |
initialize the polarization conversion matrix
invert flags, first dimension of input must match that of the output conversion vector used to set up the conversion.
Output is resized as needed. All output depending on a flagged input will be flagged. This does the inverse operation of convert, allowing flagging of converted data to be transferred back to the original data.
StokesConverter& casacore::StokesConverter::operator= | ( | const StokesConverter & | other | ) |
Assignment,.
void casacore::StokesConverter::setConversion | ( | const Vector< Int > & | out, |
const Vector< Int > & | in, | ||
Bool | rescale = False |
||
) |
Change or Set the conversion.
Arguments are the same as for constructor above.
|
mutableprivate |
Definition at line 175 of file StokesConverter.h.
|
private |
Definition at line 177 of file StokesConverter.h.
Definition at line 178 of file StokesConverter.h.
Definition at line 172 of file StokesConverter.h.
|
mutableprivate |
Definition at line 176 of file StokesConverter.h.
Definition at line 172 of file StokesConverter.h.
|
private |
Definition at line 180 of file StokesConverter.h.
|
private |
Definition at line 173 of file StokesConverter.h.
Definition at line 179 of file StokesConverter.h.