casa  $Rev:20696$
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
Static Public Member Functions
casa::FITSSpectralUtil Class Reference

A class with static functions to help deal with FITS spectral axes. More...

#include <FITSSpectralUtil.h>

List of all members.

Static Public Member Functions

static Bool fromFITSHeader (Int &spectralAxis, Double &referenceChannel, Double &referenceFrequency, Double &deltaFrequency, Vector< Double > &frequencies, MFrequency::Types &refFrame, MDoppler::Types &velocityPreference, Double &restFrequency, LogIO &logger, const RecordInterface &header, char prefix= 'c', Bool oneRelative=True)
 Get information about the spectral axis from a record containing the FITS axis information.
static Bool toFITSHeader (String &ctype, Double &crval, Double &cdelt, Double &crpix, String &cunit, Bool &haveAlt, Double &altrval, Double &altrpix, Int &velref, Double &restfreq, String &specsys, LogIO &logger, Double refFrequency, Double refChannel, Double freqIncrement, MFrequency::Types referenceFrame, Bool preferVelocity=True, MDoppler::Types velocityPreference=MDoppler::OPTICAL, Bool preferWavelength=False, Bool airWavelength=False, Bool useDeprecatedCtypes=False)
 Nearly the inverse of fromFITSHeader.
static Bool frameFromTag (MFrequency::Types &referenceFrame, const String &tag, Int velref=-1)
 Convert a reference frame tag (typically found as the characters after the first 4 characters in a ctype string for the frequency-like axis) to a MFrequency::Types value.
static Bool tagFromFrame (String &tag, Int &velref, MFrequency::Types referenceFrame)
 Construct a reference frame tag from the given referenceFrame An appropriate velref value is also constructed (this may need to be adjusted by +256 if the velocity definition is radio before being used in a FITS file).
static Bool specsysFromFrame (String &specsys, MFrequency::Types referenceFrame)
 Construct a SPECSYS keyword value from the given referenceFrame This returns False if the reference frame is not recognized.
static Bool frameFromSpecsys (MFrequency::Types &refFrame, String &specsys)
static Double refractiveIndex (const Double &lambda_um)
 The refractive index of air (argument can be vacuum wavelength or airwavelength) according to Greisen et al., 2006, A&A, 464, 746.

Detailed Description

A class with static functions to help deal with FITS spectral axes.

Intended use:

Public interface

Review Status

Reviewed By:
Eric Sessoms
Date Reviewed:
2002/08/19
Test programs:
tFITSSpectralUtil

Prerequisite

Etymology

This is a collection of static utility functions for use with FITS spectral axes.

Synopsis

This class provides functions to extract information from a FITS header about the spectral axis, to setup a FITS header with appropriate information for the spectral axis, and to translate to and from the MFrequency reference frame codes and their FITS equivalents. It is never necessary to construct a FITSSpectralUtil, just use the static functions to help handle FITS Spectral axes.

Example

    Record rec;
    ... extract the FITS keyword values into rec using FITSKeywordUtil
    Int whichAxis;
    Double refPix, refFreq, freqInc, restFreq;
    Vector<Double> freqs;
    MFrequency::Types refFrame;
    MDoppler::Types veldef;
    LogIO logger;
    FITSSpectralUtil::fromFITSHeader(whichAxis, refPix, refFreq,
           freqInc, freqs, refFrame, veldef, logger, rec);

Motivation

This is designed to be used after the keywords have been extracted from the FITS file using the FITSKeywordUtil class. Extracting spectral axis and related information requires detailed knowledge of FITS conventions that this class strives to encapsulize.

To Do

Definition at line 103 of file FITSSpectralUtil.h.


Member Function Documentation

static Bool casa::FITSSpectralUtil::frameFromSpecsys ( MFrequency::Types refFrame,
String specsys 
) [static]
static Bool casa::FITSSpectralUtil::frameFromTag ( MFrequency::Types referenceFrame,
const String tag,
Int  velref = -1 
) [static]

Convert a reference frame tag (typically found as the characters after the first 4 characters in a ctype string for the frequency-like axis) to a MFrequency::Types value.

A velref value (used in AIPS images to alternatively record the velocity reference frame) may also optionally be supplied. If tag is empty, velref will be used if it is >= 0. This function returns False if:

  • The tag is not empty but is unrecognized.
  • The tag is empty and velref is unrecognized.
  • The tag is empty and velref is < 0 (no velref was supplied).

The default value (set when the return value is False) is TOPO.

static Bool casa::FITSSpectralUtil::fromFITSHeader ( Int spectralAxis,
Double referenceChannel,
Double referenceFrequency,
Double deltaFrequency,
Vector< Double > &  frequencies,
MFrequency::Types refFrame,
MDoppler::Types velocityPreference,
Double restFrequency,
LogIO logger,
const RecordInterface header,
char  prefix = 'c',
Bool  oneRelative = True 
) [static]

Get information about the spectral axis from a record containing the FITS axis information.

Usually this will be from a FITS header using, for example, the FITSKeywordUtil::getKeywords method. referenceFrequency and deltaFrequency give the best possible linear frequency scale. prefix is the first character in the set of keywords describing the axes (e.g. crpix, crval, ctype - the prefix is 'c'). If oneRelative is False, the returned referenceChannel is decrimented from that found in header by 1. The naxis keywords are used to determine the output length of the freqs vector. This method returns False if:

  • no spectral axis is found. The freqs vector will have a length of zero.
  • The expected set of axis description keywords is not found.
  • The spectral axis is FELO but there is no rest frequency (making it impossible to convert to frequency and construct a freqs vector).
  • The combination FELO and RADIO is used (which does not make sense).
  • The combination VELO and OPTICAL is used (not yet implemented).
static Double casa::FITSSpectralUtil::refractiveIndex ( const Double lambda_um) [static]

The refractive index of air (argument can be vacuum wavelength or airwavelength) according to Greisen et al., 2006, A&A, 464, 746.

If vacuum wavelength is used there is an error of the order of 1E-9. Argument must be in micrometers!

static Bool casa::FITSSpectralUtil::specsysFromFrame ( String specsys,
MFrequency::Types  referenceFrame 
) [static]

Construct a SPECSYS keyword value from the given referenceFrame This returns False if the reference frame is not recognized.

The value of tag defaults to "TOPOCENT".

static Bool casa::FITSSpectralUtil::tagFromFrame ( String tag,
Int velref,
MFrequency::Types  referenceFrame 
) [static]

Construct a reference frame tag from the given referenceFrame An appropriate velref value is also constructed (this may need to be adjusted by +256 if the velocity definition is radio before being used in a FITS file).

This returns False if the reference frame is not recognized. The value of tag defaults to "-OBS".

static Bool casa::FITSSpectralUtil::toFITSHeader ( String ctype,
Double crval,
Double cdelt,
Double crpix,
String cunit,
Bool haveAlt,
Double altrval,
Double altrpix,
Int velref,
Double restfreq,
String specsys,
LogIO logger,
Double  refFrequency,
Double  refChannel,
Double  freqIncrement,
MFrequency::Types  referenceFrame,
Bool  preferVelocity = True,
MDoppler::Types  velocityPreference = MDoppler::OPTICAL,
Bool  preferWavelength = False,
Bool  airWavelength = False,
Bool  useDeprecatedCtypes = False 
) [static]

Nearly the inverse of fromFITSHeader.

This returns parameters which could be used in filling in a header record with appropriate values for the spectral axis given the arguments after the logger. The alternate axis description values are set when sufficient information is available. If they have been set, haveAlt will be set to True.

  • Note that the output arguments after "haveAlt" should not be written to the FITS header unless haveAlt is true.
  • Note that restfreq is both an input and an output. If there is no rest frequency, set it to be <=0 on input.

If preferVelocity is True, the axis description parameters will be set to those appropriate for a velocity axis given the referenceFrame, and velocityPreference if possible. If preferWavelength is True, the axis description parameters will be set to those appropriate for a wavelength axis given the referenceFrame if possible. The two preferences cannot be True at the same time. If airWavelength is True, the axis description parameters will be set to those appropriate for an air wavelength axis given the referenceFrame if possible. This parameter has an effect only if preferWavelength is True.

This method always returns True.


The documentation for this class was generated from the following file: