casa
$Rev:20696$
|
A Measure: uvw on Earth. More...
#include <Muvw.h>
Public Types | |
enum | Types { J2000, JMEAN, JTRUE, APP, B1950, B1950_VLA, BMEAN, BTRUE, GALACTIC, HADEC, AZEL, AZELSW, AZELGEO, AZELSWGEO, JNAT, ECLIPTIC, MECLIPTIC, TECLIPTIC, SUPERGAL, ITRF, TOPO, ICRS, N_Types, DEFAULT, AZELNE, AZELNEGEO } |
Types of known Muvws Warning: The order defines the order in the translation matrix FromTo in the getConvert routine; Do not change the order without changing the array; Additions should be made before N_types, and an additional row and column should be coded in FromTo, and in showType(); More... | |
typedef MVuvw | MVType |
Measure value container for this class (i.e. | |
typedef MCuvw | MCType |
Measure conversion routines for this class (i.e. | |
typedef MeasRef< Muvw > | Ref |
Measure reference (i.e. | |
typedef MeasConvert< Muvw > | Convert |
MeasConvert use (i.e. | |
typedef ScalarMeasColumn< Muvw > | ScalarColumn |
Measure table Columns (e.g., Muvw::ScalarColumn) | |
typedef ArrayMeasColumn< Muvw > | ArrayColumn |
Public Member Functions | |
typedef | WHATEVER_SUN_TYPEDEF (Muvw) Types Types |
Reference enum Types (included originally for gcc 2.95) | |
Muvw () | |
Tip: In the following constructors and other functions, all MeasRef can be replaced with simple Measure::TYPE where no offsets or frames are needed in the reference; Default constructor; generates the ITRF centre | |
Muvw (const MVuvw &dt) | |
Create from data and reference. | |
Muvw (const MVuvw &dt, const Muvw::Ref &rf) | |
Muvw (const MVuvw &dt, Muvw::Types rf) | |
Muvw (const Measure *dt) | |
Muvw (const MeasValue *dt) | |
Muvw (const Muvw &) | |
Copy constructor and assign. | |
Muvw & | operator= (const Muvw &) |
virtual | ~Muvw () |
virtual const String & | tellMe () const |
Tell me your type. | |
virtual uInt | type () const |
Get the type (== Register() of derived Measure (faster than Strings) All should have: static uInt myType();. | |
Bool | giveMe (Muvw::Ref &mr, const String &in) |
virtual Bool | setOffset (const Measure &in) |
Set the offset in the reference (False if non-matching Measure) | |
virtual Bool | setRefString (const String &in) |
Set the reference type to the specified String. | |
virtual const String & | getDefaultType () const |
Get the default reference type. | |
virtual const String * | allTypes (Int &nall, Int &nextra, const uInt *&typ) const |
Get a list of all known reference codes. | |
virtual void | checkTypes () const |
Check if all internal tables of types (both enum and String) are complete and correct. | |
virtual String | getRefString () const |
Get the reference type (for records, including codes like R_) | |
Quantum< Vector< Double > > | get (const Unit &inunit) const |
Get Measure data. | |
Quantum< Vector< Double > > | getAngle () const |
Quantum< Vector< Double > > | getAngle (const Unit &inunit) const |
virtual Measure * | clone () const |
Make copy. | |
Static Public Member Functions | |
static const String & | showMe () |
static void | assure (const Measure &in) |
static Muvw::Types | castType (uInt tp) |
Translate reference code. | |
static const String & | showType (Muvw::Types tp) |
static const String & | showType (uInt tp) |
static Bool | getType (Muvw::Types &tp, const String &in) |
Translate string to reference code. | |
static const String * | allMyTypes (Int &nall, Int &nextra, const uInt *&typ) |
static void | checkMyTypes () |
static Muvw::Types | fromDirType (const MDirection::Types in) |
Get the correct Muvw type from a given direction type (or v.v.) | |
static MDirection::Types | toDirType (const Muvw::Types in) |
static uInt | myType () |
Get my type (as Register) | |
Friends | |
class | MeasConvert< Muvw > |
Conversion of data. |
A Measure: uvw on Earth.
Public interface
<h3>Review Status</h3><dl><dt>Reviewed By:<dd>UNKNOWN<dt>Date Reviewed:<dd>before2004/08/25<dt>Test programs:<dd>tMuvw</dl>
From Measure and uvw
Muvw is the derived Measure class for an interferometer uvw. uvws can be given in any of the direction types, or as ITRF, the IERS base.
Note that at the moment no correction for Earth tides (error <~ 0.05 mm/km EW uvw), plate motion (not relevant for telescopes on same plate) and relativistic effects are incorporated. B1950 has the same caveat as in MDirection .
// Specify an Epoch and a telescope position MEpoch tbm(Quantity(50927.92931, "d")); MPosition pos(MVPosition(-4750915.84032, 2792906.17778, -3200483.75028), MPosition::ITRF); // Use them in a frame MeasFrame mf(tbm, pos); // Specify an uvw (note that values here are in m) MVuvw mvb0(100 ,10, 0); cout << "uvw: " << mvb0 << endl; // Specify a reference (type and where and when) for the following uvw Muvw::Ref mbref0(Muvw::ITRF, mf); Muvw mb0(mvb0, mbref0); // Show the uvw cout << "uvw: " << mb0 << endl; cout << "uvw reference: " << mbref0 << endl; // Another reference Muvw::Ref mbref1(Muvw::J2000); cout << "uvw reference: " << mbref1 << endl; // Convert the uvw coordinates to the other reference and show it cout << "Test uvw conversion ..." << endl; Muvw::Convert bconv(mb0, mbref1); cout << "Converted " << mb0 << endl << " to " << mbref1 << endl << " as " << bconv() << endl;
To be able to handle conversions between uvw coordinates with different reference directions.
typedef ArrayMeasColumn<Muvw> casa::Muvw::ArrayColumn |
typedef MeasConvert<Muvw> casa::Muvw::Convert |
MeasConvert use (i.e.
Reimplemented from casa::Measure.
typedef MCuvw casa::Muvw::MCType |
Measure conversion routines for this class (i.e.
typedef MVuvw casa::Muvw::MVType |
typedef MeasRef<Muvw> casa::Muvw::Ref |
typedef ScalarMeasColumn<Muvw> casa::Muvw::ScalarColumn |
Measure table Columns (e.g., Muvw::ScalarColumn)
enum casa::Muvw::Types |
Types of known Muvws
Warning: The order defines the order in the translation matrix FromTo in the getConvert routine; Do not change the order without changing the array; Additions should be made before N_types, and an additional row and column should be coded in FromTo, and in showType();
Reimplemented from casa::Measure.
casa::Muvw::Muvw | ( | ) |
Tip: In the following constructors and other functions, all MeasRef can be replaced with simple Measure::TYPE
where no offsets or frames are needed in the reference;
Default constructor; generates the ITRF centre
casa::Muvw::Muvw | ( | const MVuvw & | dt | ) |
Create from data and reference.
casa::Muvw::Muvw | ( | const MVuvw & | dt, |
const Muvw::Ref & | rf | ||
) |
casa::Muvw::Muvw | ( | const MVuvw & | dt, |
Muvw::Types | rf | ||
) |
casa::Muvw::Muvw | ( | const Measure * | dt | ) |
casa::Muvw::Muvw | ( | const MeasValue * | dt | ) |
casa::Muvw::Muvw | ( | const Muvw & | ) |
Copy constructor and assign.
virtual casa::Muvw::~Muvw | ( | ) | [virtual] |
static const String* casa::Muvw::allMyTypes | ( | Int & | nall, |
Int & | nextra, | ||
const uInt *& | typ | ||
) | [static] |
virtual const String* casa::Muvw::allTypes | ( | Int & | nall, |
Int & | nextra, | ||
const uInt *& | typ | ||
) | const [virtual] |
Get a list of all known reference codes.
nall returns the number in list, nextra the number of specials (like planets) that should be at end of list). typ returns the list of corresponding types.
Reimplemented from casa::Measure.
static void casa::Muvw::assure | ( | const Measure & | in | ) | [static] |
static Muvw::Types casa::Muvw::castType | ( | uInt | tp | ) | [static] |
Translate reference code.
The uInt version has a check for valid codes (i.e. it is a safe cast).
static void casa::Muvw::checkMyTypes | ( | ) | [static] |
virtual void casa::Muvw::checkTypes | ( | ) | const [virtual] |
Check if all internal tables of types (both enum and String) are complete and correct.
This function is called automatically if and when necessary.
Implements casa::Measure.
virtual Measure* casa::Muvw::clone | ( | ) | const [virtual] |
Make copy.
Implements casa::Measure.
static Muvw::Types casa::Muvw::fromDirType | ( | const MDirection::Types | in | ) | [static] |
Get the correct Muvw type from a given direction type (or v.v.)
Quantum<Vector<Double> > casa::Muvw::getAngle | ( | ) | const |
Quantum<Vector<Double> > casa::Muvw::getAngle | ( | const Unit & | inunit | ) | const |
virtual const String& casa::Muvw::getDefaultType | ( | ) | const [virtual] |
Get the default reference type.
Implements casa::Measure.
virtual String casa::Muvw::getRefString | ( | ) | const [virtual] |
Get the reference type (for records, including codes like R_)
Implements casa::Measure.
static Bool casa::Muvw::getType | ( | Muvw::Types & | tp, |
const String & | in | ||
) | [static] |
Translate string to reference code.
Bool casa::Muvw::giveMe | ( | Muvw::Ref & | mr, |
const String & | in | ||
) |
static uInt casa::Muvw::myType | ( | ) | [static] |
Get my type (as Register)
virtual Bool casa::Muvw::setOffset | ( | const Measure & | in | ) | [virtual] |
Set the offset in the reference (False if non-matching Measure)
Implements casa::Measure.
virtual Bool casa::Muvw::setRefString | ( | const String & | in | ) | [virtual] |
Set the reference type to the specified String.
False if illegal string, reference set to DEFAULT.
Implements casa::Measure.
static const String& casa::Muvw::showMe | ( | ) | [static] |
static const String& casa::Muvw::showType | ( | Muvw::Types | tp | ) | [static] |
static const String& casa::Muvw::showType | ( | uInt | tp | ) | [static] |
virtual const String& casa::Muvw::tellMe | ( | ) | const [virtual] |
Tell me your type.
Implements casa::Measure.
static MDirection::Types casa::Muvw::toDirType | ( | const Muvw::Types | in | ) | [static] |
virtual uInt casa::Muvw::type | ( | ) | const [virtual] |
Get the type (== Register() of derived Measure (faster than Strings) All should have: static uInt myType();.
Implements casa::Measure.
typedef casa::Muvw::WHATEVER_SUN_TYPEDEF | ( | Muvw | ) |
Reference enum Types (included originally for gcc 2.95)
friend class MeasConvert< Muvw > [friend] |
Conversion of data.