casacore
|
#include <QuantumHolder.h>
Public Member Functions | |
QuantumHolder () | |
Creates an empty holder. More... | |
QuantumHolder (const QBase &in) | |
Create from a Quantum (copy semantics) More... | |
QuantumHolder (const QuantumHolder &other) | |
Copy a holder (copy semantics) More... | |
~QuantumHolder () | |
QuantumHolder & | operator= (const QuantumHolder &other) |
Assignment (copy semantics) More... | |
Bool | isEmpty () const |
Check if it holds a Quantity. More... | |
Bool | isQuantum () const |
Bool | isScalar () const |
Bool | isVector () const |
Bool | isArray () const |
Bool | isReal () const |
Bool | isComplex () const |
Bool | isQuantity () const |
Bool | isQuantumDouble () const |
Bool | isQuantumFloat () const |
Bool | isQuantumInt () const |
Bool | isQuantumComplex () const |
Bool | isQuantumDComplex () const |
Bool | isQuantumVectorDouble () const |
Bool | isQuantumVectorFloat () const |
Bool | isQuantumVectorInt () const |
Bool | isQuantumVectorComplex () const |
Bool | isQuantumVectorDComplex () const |
Bool | isQuantumArrayDouble () const |
Bool | isQuantumArrayFloat () const |
Bool | isQuantumArrayInt () const |
Bool | isQuantumArrayComplex () const |
Bool | isQuantumArrayDComplex () const |
Int | nelements () const |
Get number of numeric elements (1 if scalar, else vector length) or dimensions (0 if scalar) More... | |
Int | ndim () const |
const QBase & | asQuantum () const |
Get a Quantum from the holder (with lifetime as long as holder exists). More... | |
const Quantum< Double > & | asQuantity () |
const Quantum< Double > & | asQuantumDouble () |
const Quantum< Float > & | asQuantumFloat () |
const Quantum< Int > & | asQuantumInt () |
const Quantum< Complex > & | asQuantumComplex () |
const Quantum< DComplex > & | asQuantumDComplex () |
const Quantum< Vector< Double > > & | asQuantumVectorDouble () |
const Quantum< Vector< Float > > & | asQuantumVectorFloat () |
const Quantum< Vector< Int > > & | asQuantumVectorInt () |
const Quantum< Vector< Complex > > & | asQuantumVectorComplex () |
const Quantum< Vector< DComplex > > & | asQuantumVectorDComplex () |
const Quantum< Array< Double > > & | asQuantumArrayDouble () |
const Quantum< Array< Float > > & | asQuantumArrayFloat () |
const Quantum< Array< Int > > & | asQuantumArrayInt () |
const Quantum< Array< Complex > > & | asQuantumArrayComplex () |
const Quantum< Array< DComplex > > & | asQuantumArrayDComplex () |
virtual Bool | fromRecord (String &error, const RecordInterface &in) |
Create a Quantum from a record or a string. More... | |
virtual Bool | fromString (String &error, const String &in) |
Initialise the class from a String representation. More... | |
virtual Bool | toRecord (String &error, RecordInterface &out) const |
Create a record from a Quantum. More... | |
virtual void | toRecord (RecordInterface &out) const |
this version throws an exception rather than returning false More... | |
virtual Record | toRecord () const |
this version throws an exception or returns the result Record. More... | |
virtual const String & | ident () const |
Return identification. More... | |
Public Member Functions inherited from casacore::RecordTransformable | |
virtual | ~RecordTransformable () |
The destructor must be virtual so that the destructor of derived classes is actually used. More... | |
Private Member Functions | |
void | toReal (const uInt &tp) |
Convert to a different real scalar quantum. More... | |
void | toComplex (const uInt &tp) |
Convert to a different complex scalar quantum. More... | |
void | toVector () |
Convert scalar to Vector. More... | |
void | toArray () |
Convert scalar to Array. More... | |
Private Attributes | |
PtrHolder< QBase > | hold_p |
Pointer to a Quantity. More... | |
A holder for Quantums to enable record conversions
Public interface
A Holder of general Quantums
This class can be used to handle a heterogeneous list of Quantums, and can handle toRecord() and fromRecord() conversions. A QuantumHolder is created empty, from a Quantum (e.g. a Quantum<Double>
) or a Quantum<Vector<Float> >
).
The accepted range of Quantums is:
Quantum<Int>, Quantum<Float>, Quantum<Double> == Quantity
Quantum<Complex>, Quantum<DComplex>
Quantum<Vector<Int> >, Quantum<Vector<Float> >
, Quantum<Vector<Double> >
Quantum<Vector<Complex> >, Quantum<Vector<DComplex> >
Quantum<Array<Int> >, Quantum<Array<Float> >
, Quantum<Array<Double> >
Quantum<Array<Complex> >, Quantum<Array<DComplex> >
Scalars in the same group can be converted to any in the same group (e.g. Int to Double); Vectors of length 1 can be converted to scalars in the corresponding group; Scalars can always be converted to Vectors in the corresponding group. Real scalar values can be converted to Complex values. Vectors cannot be converted to other type vectors.
Checks on the contents can be made with functions like isQuantity
and the contents can be obtained with functions like asQuantity
. It is an error to try and retrieve a Quantum of the wrong type and doing so will generate an exception (AipsError).
To make general conversions between Quantums and records, without knowing the actual Quantum being converted.
Definition at line 116 of file QuantumHolder.h.
casacore::QuantumHolder::QuantumHolder | ( | ) |
Creates an empty holder.
casacore::QuantumHolder::QuantumHolder | ( | const QuantumHolder & | other | ) |
Copy a holder (copy semantics)
casacore::QuantumHolder::~QuantumHolder | ( | ) |
const QBase& casacore::QuantumHolder::asQuantum | ( | ) | const |
const Quantum<Complex>& casacore::QuantumHolder::asQuantumComplex | ( | ) |
const Quantum<DComplex>& casacore::QuantumHolder::asQuantumDComplex | ( | ) |
|
virtual |
Create a Quantum from a record or a string.
A valid record will contain the following fields:
A valid string will be one of the special time/angle formats or a value with a valid unit string. Illegal values or units will return False and write an error message.
Implements casacore::RecordTransformable.
|
virtual |
Initialise the class from a String representation.
A string cannot contain enough information for many objects. Hence the default implementation of this class returns False, indicating that the class could not be initialised and an error message is appended to the supplied string. If the class can be initialised from a string then this function should be overridden.
Reimplemented from casacore::RecordTransformable.
|
virtual |
Return identification.
Reimplemented from casacore::RecordTransformable.
Bool casacore::QuantumHolder::isArray | ( | ) | const |
Bool casacore::QuantumHolder::isComplex | ( | ) | const |
Bool casacore::QuantumHolder::isEmpty | ( | ) | const |
Check if it holds a Quantity.
Note that a Vector of length 1 will give True to scalar questions.
Bool casacore::QuantumHolder::isQuantity | ( | ) | const |
Bool casacore::QuantumHolder::isQuantum | ( | ) | const |
Bool casacore::QuantumHolder::isQuantumArrayComplex | ( | ) | const |
Bool casacore::QuantumHolder::isQuantumArrayDComplex | ( | ) | const |
Bool casacore::QuantumHolder::isQuantumArrayDouble | ( | ) | const |
Bool casacore::QuantumHolder::isQuantumArrayFloat | ( | ) | const |
Bool casacore::QuantumHolder::isQuantumArrayInt | ( | ) | const |
Bool casacore::QuantumHolder::isQuantumComplex | ( | ) | const |
Bool casacore::QuantumHolder::isQuantumDComplex | ( | ) | const |
Bool casacore::QuantumHolder::isQuantumDouble | ( | ) | const |
Bool casacore::QuantumHolder::isQuantumFloat | ( | ) | const |
Bool casacore::QuantumHolder::isQuantumInt | ( | ) | const |
Bool casacore::QuantumHolder::isQuantumVectorComplex | ( | ) | const |
Bool casacore::QuantumHolder::isQuantumVectorDComplex | ( | ) | const |
Bool casacore::QuantumHolder::isQuantumVectorDouble | ( | ) | const |
Bool casacore::QuantumHolder::isQuantumVectorFloat | ( | ) | const |
Bool casacore::QuantumHolder::isQuantumVectorInt | ( | ) | const |
Bool casacore::QuantumHolder::isReal | ( | ) | const |
Bool casacore::QuantumHolder::isScalar | ( | ) | const |
Bool casacore::QuantumHolder::isVector | ( | ) | const |
Int casacore::QuantumHolder::ndim | ( | ) | const |
Int casacore::QuantumHolder::nelements | ( | ) | const |
Get number of numeric elements (1 if scalar, else vector length) or dimensions (0 if scalar)
QuantumHolder& casacore::QuantumHolder::operator= | ( | const QuantumHolder & | other | ) |
Assignment (copy semantics)
|
private |
Convert scalar to Array.
|
private |
Convert to a different complex scalar quantum.
|
private |
Convert to a different real scalar quantum.
|
virtual |
this version throws an exception or returns the result Record.
|
virtual |
this version throws an exception rather than returning false
|
virtual |
Create a record from a Quantum.
A False return and an error message is only generated if there is no valid Quantum in the holder.
Implements casacore::RecordTransformable.
|
private |
Convert scalar to Vector.
Pointer to a Quantity.
Definition at line 232 of file QuantumHolder.h.