//# MVRadialVelocity.h: Internal value for MRadialvelocity //# Copyright (C) 1996,1997,1998,1999,2000,2001,2003 //# Associated Universities, Inc. Washington DC, USA. //# //# This library is free software; you can redistribute it and/or modify it //# under the terms of the GNU Library General Public License as published by //# the Free Software Foundation; either version 2 of the License, or (at your //# option) any later version. //# //# This library is distributed in the hope that it will be useful, but WITHOUT //# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or //# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public //# License for more details. //# //# You should have received a copy of the GNU Library General Public License //# along with this library; if not, write to the Free Software Foundation, //# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA. //# //# Correspondence concerning AIPS++ should be addressed as follows: //# Internet email: aips2-request@nrao.edu. //# Postal address: AIPS++ Project Office //# National Radio Astronomy Observatory //# 520 Edgemont Road //# Charlottesville, VA 22903-2475 USA //# //# $Id$ #ifndef CASA_MVRADIALVELOCITY_H #define CASA_MVRADIALVELOCITY_H //# Includes #include #include #include #include #include namespace casacore { //# NAMESPACE CASACORE - BEGIN //# Forward Declarations template class Quantum; // Internal value for MRadialVelocity // // // // //
  • MeasValue // // // // From Measure, Value and Radial Velocity // // // // An MVRadialVelocity is a simple Double, to be used in the MRadialVelocity // measure. // Requirements can be found in the // MeasValue base class.
    // The only reasonable constructor is (but all MeasValue constructors are // present) // MVRadialVelocity(Double); and an operator Double takes // care of all other possibilities. Its external use is for // MeasConvert, to distinguish between // input in internal Measure units, and values which have to have // units applied.
    // The MVRadialVelocity(Quantum) constructors recognise the type of wave // characteristics presented from its units. Recognised are: //
      //
    • velocity (length/time) //
    //
    The velocity is returned in m/s with getValue(); or as a Quantity // in m/s with get(); or in the specified units with get(unit). // // A shiftFrequency() method can shift frequencies. //
    // // // See MRadialVelocity // // // // To aid coordinate transformations possibilities // // // // class MVRadialVelocity : public MeasValue { public: //# Constructors // Default constructor: generate a zero value MVRadialVelocity(); // Copy constructor MVRadialVelocity(const MVRadialVelocity &other); // Copy assignment MVRadialVelocity &operator=(const MVRadialVelocity &other); // Constructor from Double (assume m/s) MVRadialVelocity(Double d); // Constructor from Quantum // MVRadialVelocity(const Quantity &other); MVRadialVelocity(const Quantum > &other); // // Constructor from Vector. A zero value will be taken for an empty vector, // the first element for a quantum vector. // //
  • AipsError if vector length > 1 // // MVRadialVelocity(const Vector &other); MVRadialVelocity(const Vector &other); // // Destructor ~MVRadialVelocity(); //# Operators // Conversion operator operator Double() const; // Addition // MVRadialVelocity &operator+=(const MVRadialVelocity &other); MVRadialVelocity &operator-=(const MVRadialVelocity &other); // // Comparisons // Bool operator==(const MVRadialVelocity &other) const; Bool operator!=(const MVRadialVelocity &other) const; Bool near(const MVRadialVelocity &other, Double tol = 1e-13) const; Bool nearAbs(const MVRadialVelocity &other, Double tol = 1e-13) const; // //# General member functions // Tell me your type // static void assure(const MeasValue &in); // // Print data virtual void print(ostream &os) const; // Clone virtual MeasValue *clone() const; // Adjust value: taken from base class, a NOP. // Get value in m/s Double getValue() const; // Get quantity in m/s Quantity get() const; // Get the wave characteristics in (recognised) specified units Quantity get(const Unit &unit) const; // Get the value in internal units virtual Vector getVector() const; // Set the value from internal units (set 0 for empty vector) virtual void putVector(const Vector &in); // Get the internal value as a Vector. Usable in // records. The getXRecordValue() gets additional information for records. // Note that the Vectors could be empty. // virtual Vector > getRecordValue() const; // // Set the internal value if correct values and dimensions virtual Bool putValue(const Vector > &in); // Shift the input frequencies to the output frequencies. In the case of // simple Double inputs, it is assumed that the values are linearly dependent // on frequency. I.e. frequencies given as wavelength or time cannot be used. // Vector shiftFrequency(const Vector &freq) const; Quantum > shiftFrequency(const Quantum > &freq) const; // private: //# Data // Value Double val; //# Member functions // Get correct data type conversion factor from input Quantum Double makeF(const Unit &dt) const; }; } //# NAMESPACE CASACORE - END #endif