Source
* <li> 2 Two sideband (TWOSB): Case with sideband separation (only for interferometric modes)
/*******************************************************************************
* ALMA - Atacama Large Millimiter Array
* (c) Instituto de Estructura de la Materia, 2009
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* "@(#) $Id: ATMEnumerations.h Exp $"
*
* who when what
* -------- -------- ----------------------------------------------
* pardo 24/03/09 created
*/
ATM_NAMESPACE_BEGIN
/** \file
* \brief Global enumeration objects
*
* The ASDM uses the the item netSideband to describe the sidebands. It appears
* more convenient to use a pair of items, the side of the sideband and its type.
* The following two enumerations describes this.
*
*/
/** \brief Defines the side of a sideband.
*
* Heterodyne receivers have two sidebands, a lower and an upper sideband. On the
* other hand the detectors do not have sidebands. The Science Data Model assign
* one spectral window per sideband. Hence, with detectors, there is a single
* spectral window. SidebandSide differentiates between these various cases.<br>
*
* The codes have the following meaning:
* <ul>
* <li> 0 No sideband (eg for a detector)
* <li> 1 Lower sideband (LSB)
* <li> 2 Upper sideband (USB)
* </ul>
*/
enum SidebandSide{ NOSB=0, //!< No sideband (eg for HEMT)
LSB=1, //!< Lower sideband (LSB)
USB=2 //!< Upper sideband (USB)
};