//# MVDoppler.h: Internal value for MDoppler //# Copyright (C) 1996,1997,1998,1999,2000,2001 //# 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_MVDOPPLER_H #define CASA_MVDOPPLER_H //# Includes #include #include #include #include #include #include namespace casacore { //# NAMESPACE CASACORE - BEGIN //# Forward Declarations // Internal value for MDoppler // // // // //
  • MeasValue // // // // From Measure, Value and Doppler // // // // An MVDoppler is a simple Double, to be used in the MDoppler measure. // Requirements can be found in the // MeasValue base class.
    // The only reasonable constructor is (but all MeasValue constructors are // present) // MVDoppler(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 MVDoppler(Quantum) constructors recognise the type of representation // characteristics presented from its units. Recognised are: //
      //
    • no dimensions: value assumed to be dimensionless as is //
    • velocity: value will be divided by c (light velocity) //
    //
    The Doppler is returned dimensionless with getValue(); or as a Quantity // in m/s with get(); or in one of the related units with get(unit). //
    // // // See MDoppler // // // // To aid coordinate transformations possibilities // // // // class MVDoppler : public MeasValue { public: //# Constructors // Default constructor: generate a zero value MVDoppler(); // Copy constructor MVDoppler(const MVDoppler &other); // Copy assignment MVDoppler &operator=(const MVDoppler &other); // Constructor from Double MVDoppler(Double d); // Constructor from Quantum : value taken will be the canonical value // MVDoppler(const Quantity &other); MVDoppler(const Quantum > &other); // // Constructor from Vector. A zero value will be taken for an empty vector, // the canonical value for a quantum vector. // //
  • AipsError if vector length > 1 // // MVDoppler(const Vector &other); MVDoppler(const Vector &other); // // Destructor ~MVDoppler(); //# Operators // Conversion operator operator Double() const; // Addition // MVDoppler &operator+=(const MVDoppler &other); MVDoppler &operator-=(const MVDoppler &other); // // Comparisons // Bool operator==(const MVDoppler &other) const; Bool operator!=(const MVDoppler &other) const; Bool near(const MVDoppler &other, Double tol = 1e-13) const; Bool nearAbs(const MVDoppler &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 as ratio Double getValue() const; // Get quantity in m/s Quantity get() const; // Get the Doppler value 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); private: //# Data // Value Double val; //# Member functions // Get correct data type conversion factor from input Quantum Double makeD(Double v, const Unit &dt, Bool rev=False) const; }; } //# NAMESPACE CASACORE - END #endif