casa
$Rev:20696$
|
A 3D vector on Earth. More...
#include <MVBaseline.h>
Public Member Functions | |
MVBaseline () | |
Default constructor generates a (0,0,0) Baseline. | |
MVBaseline (const MVPosition &other) | |
Copy constructor. | |
MVBaseline (Double in0, Double in1, Double in2) | |
Creates a specified vector. | |
MVBaseline (Double in0) | |
Creates a vector with specified length towards pole. | |
MVBaseline (const Quantity &l) | |
MVBaseline (const Quantity &l, Double angle0, Double angle1) | |
Creates the Baseline from specified (azimuth,elevation) angles and length. | |
MVBaseline (const Quantity &l, const Quantity &angle0, const Quantity &angle1) | |
Creates the Baseline from specified angles and length. | |
MVBaseline (const Quantum< Vector< Double > > &angle) | |
If not enough angles: pole assumed (if none), or elevation =0 (if 1) | |
MVBaseline (const Quantity &l, const Quantum< Vector< Double > > &angle) | |
MVBaseline (const Vector< Double > &other) | |
Create from specified length and/or angles and/or Baseline. | |
MVBaseline (const Vector< Quantity > &other) | |
MVBaseline (const MVPosition &pos, const MVPosition &base) | |
Baseline as difference between positions (first - second (default(0,0,0)) | |
MVBaseline & | operator= (const MVBaseline &other) |
Copy assignment. | |
~MVBaseline () | |
Destructor. | |
Double | operator* (const MVBaseline &other) const |
Multiplication defined as in-product. | |
Bool | operator== (const MVBaseline &other) const |
Equality comparisons. | |
Bool | operator!= (const MVBaseline &other) const |
Bool | near (const MVBaseline &other, Double tol=1e-13) const |
Bool | near (const MVBaseline &other, Quantity tol) const |
Bool | nearAbs (const MVBaseline &other, Double tol=1e-13) const |
MVBaseline | operator- () const |
Addition and subtraction. | |
MVBaseline & | operator+= (const MVBaseline &right) |
MVBaseline | operator+ (const MVBaseline &right) const |
MVBaseline & | operator-= (const MVBaseline &right) |
MVBaseline | operator- (const MVBaseline &right) const |
virtual uInt | type () const |
Tell me your type. | |
virtual void | adjust () |
Normalise direction aspects by adjusting the length to 1. | |
virtual void | adjust (Double &res) |
Adjustment with returned factor. | |
virtual void | readjust (Double res) |
Re-adjust using factor given. | |
virtual Double | radius () |
Get radius of Baseline. | |
Vector< Double > | get () const |
Generate a 3-vector of coordinates (length(m), angles(rad)) | |
const Vector< Double > & | getValue () const |
Generate a 3-vector of x,y,z in m. | |
Quantum< Vector< Double > > | getAngle () const |
Generate angle 2-vector (in rad) | |
Quantum< Vector< Double > > | getAngle (const Unit &unit) const |
and with specified units | |
Quantity | getLength () const |
Generate the length. | |
Quantity | getLength (const Unit &unit) const |
and generate it with the specified units | |
Double | BaselineAngle (const MVBaseline &other) const |
Get the Baseline angle between the directions. | |
Quantity | BaselineAngle (const MVBaseline &other, const Unit &unit) const |
Double | separation (const MVBaseline &other) const |
Get the angular separation between two directions. | |
Quantity | separation (const MVBaseline &other, const Unit &unit) const |
MVBaseline | crossProduct (const MVBaseline &other) const |
Produce the cross product. | |
virtual void | print (ostream &os) const |
Print data. | |
virtual MeasValue * | clone () const |
Clone. | |
virtual Vector< Double > | getVector () const |
Get the value in internal units. | |
virtual void | putVector (const Vector< Double > &in) |
Set the value from internal units (set 0 for empty vector) | |
virtual Vector< Quantum< Double > > | getRecordValue () const |
Get the internal value as a Vector<Quantity> . | |
virtual Vector< Quantum< Double > > | getXRecordValue () const |
virtual Vector< Quantum< Double > > | getTMRecordValue () const |
virtual Bool | putValue (const Vector< Quantum< Double > > &in) |
Set the internal value if correct values and dimensions. | |
Static Public Member Functions | |
static void | assure (const MeasValue &in) |
A 3D vector 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>tMBaseline</dl>
From Measure, Value and Baseline
A MVBaseline is a 3-vector of Baselines in a rectangular frame with internal units of m.
It can be constructed with:
MVBaseline(Quantity, Quantum<Vector<Double> >)
creates a MVBaseline from angle vector, using first two angles, and assuming second as zero if not present. MVBaseline(Quantum<Vector<Double> >
creates from angles or Baselines, depending on the units in the quantum vector. In the angle case, the data derived can be scaled with the readjust() function. If the unit of the quantum vector is length, Baseline is assumed. MVBaseline(Vector<Double>
creates from angles (less than or equal to two elements) or x,y,z (3 elements). MVBaseline(Vector<Quantity>
creates from length+angles, angles, or x,y,z, depending on units. MVBaseline(MVPosition, MVPosition)
creates a baseline pointing from second to first MVPosition MVBaseline(MVPosition)
creates a baseline as defined by the position given (e.g. as derived from an offset MPosition) A void adjust(Double) function normalises the vector to a length of 1; a get() returns as a Double 3-vector the length and angles of the Baseline vector; a getAngle() returns a Quantum 2-vector, (uInt) returns the indicated element, and getValue returns the vector.
Baselines can be added and subtracted.
The multiplication of two Baselines produces the in-product.
See MBaseline class.
To do coordinate transformations
Definition at line 107 of file MVBaseline.h.
Default constructor generates a (0,0,0) Baseline.
casa::MVBaseline::MVBaseline | ( | const MVPosition & | other | ) |
Copy constructor.
casa::MVBaseline::MVBaseline | ( | Double | in0, |
Double | in1, | ||
Double | in2 | ||
) |
Creates a specified vector.
casa::MVBaseline::MVBaseline | ( | Double | in0 | ) | [explicit] |
Creates a vector with specified length towards pole.
casa::MVBaseline::MVBaseline | ( | const Quantity & | l | ) |
casa::MVBaseline::MVBaseline | ( | const Quantity & | l, |
Double | angle0, | ||
Double | angle1 | ||
) |
Creates the Baseline from specified (azimuth,elevation) angles and length.
casa::MVBaseline::MVBaseline | ( | const Quantity & | l, |
const Quantity & | angle0, | ||
const Quantity & | angle1 | ||
) |
Creates the Baseline from specified angles and length.
or Baselines
<h3>Thrown Exceptions</h3><ul> <li> AipsError if quantities not in angle format </ul>
casa::MVBaseline::MVBaseline | ( | const Quantum< Vector< Double > > & | angle | ) |
If not enough angles: pole assumed (if none), or elevation =0 (if 1)
casa::MVBaseline::MVBaseline | ( | const Quantity & | l, |
const Quantum< Vector< Double > > & | angle | ||
) |
casa::MVBaseline::MVBaseline | ( | const Vector< Double > & | other | ) |
Create from specified length and/or angles and/or Baseline.
casa::MVBaseline::MVBaseline | ( | const Vector< Quantity > & | other | ) |
casa::MVBaseline::MVBaseline | ( | const MVPosition & | pos, |
const MVPosition & | base | ||
) |
Baseline as difference between positions (first - second (default(0,0,0))
Destructor.
virtual void casa::MVBaseline::adjust | ( | ) | [virtual] |
Normalise direction aspects by adjusting the length to 1.
Reimplemented from casa::MVPosition.
virtual void casa::MVBaseline::adjust | ( | Double & | res | ) | [virtual] |
Adjustment with returned factor.
Reimplemented from casa::MVPosition.
static void casa::MVBaseline::assure | ( | const MeasValue & | in | ) | [static] |
Reimplemented from casa::MVPosition.
Double casa::MVBaseline::BaselineAngle | ( | const MVBaseline & | other | ) | const |
Get the Baseline angle between the directions.
I.e. the angle between the direction from one to the pole, and from one to the other.
Quantity casa::MVBaseline::BaselineAngle | ( | const MVBaseline & | other, |
const Unit & | unit | ||
) | const |
virtual MeasValue* casa::MVBaseline::clone | ( | ) | const [virtual] |
Clone.
Reimplemented from casa::MVPosition.
MVBaseline casa::MVBaseline::crossProduct | ( | const MVBaseline & | other | ) | const |
Produce the cross product.
Vector<Double> casa::MVBaseline::get | ( | ) | const |
Generate a 3-vector of coordinates (length(m), angles(rad))
Reimplemented from casa::MVPosition.
Quantum<Vector<Double> > casa::MVBaseline::getAngle | ( | ) | const |
Generate angle 2-vector (in rad)
Reimplemented from casa::MVPosition.
Quantum<Vector<Double> > casa::MVBaseline::getAngle | ( | const Unit & | unit | ) | const |
and with specified units
Reimplemented from casa::MVPosition.
Quantity casa::MVBaseline::getLength | ( | ) | const |
Generate the length.
Reimplemented from casa::MVPosition.
Quantity casa::MVBaseline::getLength | ( | const Unit & | unit | ) | const |
and generate it with the specified units
Reimplemented from casa::MVPosition.
virtual Vector<Quantum<Double> > casa::MVBaseline::getRecordValue | ( | ) | const [virtual] |
Get the internal value as a Vector<Quantity>
.
Usable in records. The getXRecordValue() gets additional information for records. Note that the Vectors could be empty.
Reimplemented from casa::MVPosition.
virtual Vector<Quantum<Double> > casa::MVBaseline::getTMRecordValue | ( | ) | const [inline, virtual] |
Reimplemented from casa::MVPosition.
Definition at line 236 of file MVBaseline.h.
References getXRecordValue().
const Vector<Double>& casa::MVBaseline::getValue | ( | ) | const |
Generate a 3-vector of x,y,z in m.
Reimplemented from casa::MVPosition.
virtual Vector<Double> casa::MVBaseline::getVector | ( | ) | const [virtual] |
Get the value in internal units.
Reimplemented from casa::MVPosition.
virtual Vector<Quantum<Double> > casa::MVBaseline::getXRecordValue | ( | ) | const [virtual] |
Reimplemented from casa::MVPosition.
Referenced by getTMRecordValue().
Bool casa::MVBaseline::near | ( | const MVBaseline & | other, |
Double | tol = 1e-13 |
||
) | const |
Bool casa::MVBaseline::near | ( | const MVBaseline & | other, |
Quantity | tol | ||
) | const |
Bool casa::MVBaseline::nearAbs | ( | const MVBaseline & | other, |
Double | tol = 1e-13 |
||
) | const |
Bool casa::MVBaseline::operator!= | ( | const MVBaseline & | other | ) | const |
Double casa::MVBaseline::operator* | ( | const MVBaseline & | other | ) | const |
Multiplication defined as in-product.
MVBaseline casa::MVBaseline::operator+ | ( | const MVBaseline & | right | ) | const |
MVBaseline& casa::MVBaseline::operator+= | ( | const MVBaseline & | right | ) |
MVBaseline casa::MVBaseline::operator- | ( | ) | const |
Addition and subtraction.
Reimplemented from casa::MVPosition.
MVBaseline casa::MVBaseline::operator- | ( | const MVBaseline & | right | ) | const |
MVBaseline& casa::MVBaseline::operator-= | ( | const MVBaseline & | right | ) |
MVBaseline& casa::MVBaseline::operator= | ( | const MVBaseline & | other | ) |
Copy assignment.
Bool casa::MVBaseline::operator== | ( | const MVBaseline & | other | ) | const |
Equality comparisons.
virtual void casa::MVBaseline::print | ( | ostream & | os | ) | const [virtual] |
Print data.
Reimplemented from casa::MVPosition.
virtual Bool casa::MVBaseline::putValue | ( | const Vector< Quantum< Double > > & | in | ) | [virtual] |
Set the internal value if correct values and dimensions.
Reimplemented from casa::MVPosition.
virtual void casa::MVBaseline::putVector | ( | const Vector< Double > & | in | ) | [virtual] |
Set the value from internal units (set 0 for empty vector)
Reimplemented from casa::MVPosition.
virtual Double casa::MVBaseline::radius | ( | ) | [virtual] |
Get radius of Baseline.
Reimplemented from casa::MVPosition.
virtual void casa::MVBaseline::readjust | ( | Double | res | ) | [virtual] |
Re-adjust using factor given.
Reimplemented from casa::MVPosition.
Double casa::MVBaseline::separation | ( | const MVBaseline & | other | ) | const |
Get the angular separation between two directions.
Quantity casa::MVBaseline::separation | ( | const MVBaseline & | other, |
const Unit & | unit | ||
) | const |
virtual uInt casa::MVBaseline::type | ( | ) | const [virtual] |
Tell me your type.
Reimplemented from casa::MVPosition.