Source
cout << " SpectralGridTest: Create a pointer with first element construted with SpectralGrid(usigned int numChan, unsigned int refChan, Frequency refFreq, Frequency chanSep):" << endl;
/*******************************************************************************
* ALMA - Atacama Large Millimeter Array
* (c) Instituto de Estructura de la Materia, 2011
* (in the framework of the ALMA collaboration).
* All rights reserved.
*
* 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
*******************************************************************************/
using namespace std;
using namespace atm;
/** \brief A C++ main code to test the <a href="classatm_1_1SpectralGrid.html">SpectralGrid</a> Class
*
* Test 1 is structured as follows:
* - Creates a pointer called "sgPtr1" of objects belonging to the class <a href="classatm_1_1SpectralGrid.html">SpectralGrid</a>
* - Initializes that pointer with a first object created with the <a href="classatm_1_1SpectralGrid.html#a1">this</a> constructor.
* - The pointer has then one element . On this element, several things are checked using the following operators of the class:
* <a href="classatm_1_1SpectralGrid.html#z14_6">getRefFreq(unsigned int spwId)</a>,
* <a href="classatm_1_1SpectralGrid.html#z14_8">getChanSep(unsigned int spwId)</a>,
* <a href="classatm_1_1SpectralGrid.html#z14_0">getNumSpectralWindow()</a>, and
* <a href="classatm_1_1SpectralGrid.html#z14_2">getNumChan(unsigned int spwId)</a>.
* - An rrror message is expected when trying getNumChan(1) because there is no spectral window number 1.
* - Finally, the operators <a href="classatm_1_1SpectralGrid.html#z14_22">isRegular(unsigned int spwId)</a>,
* and <a href="classatm_1_1SpectralGrid.html#z14_25">getAssocSpwId(unsigned int spwId)</a> are tested.
*
* The ouput of this test should be as follows:
*
* <b>
* SpectralGridTest: Test 1: <br>
* SpectralGridTest: Create a pointer with first element construted with SpectralGrid(usigned int numChan, unsigned int refChan, Frequency refFreq, Frequency chanSep):<br>
* SpectralGridTest: Number of channels retrieved: 64 (Value entered to constructor:64)<br>
* SpectralGridTest: Reference frequency retrieved: 9e+10 Hz; SpectralGridTest: Input:90 GHz<br>
* SpectralGridTest: Reference frequency retrieved: 90GHz SpectralGridTest: Input:90 GHz<br>
* SpectralGridTest: Reference channel retrieved: 32 (Value entered to constructor:32)<br>
* SpectralGridTest: Channel separation retrieved: 1e+07 Hz; SpectralGridTest: Input:0.01 GHz<br>
* SpectralGridTest: Channel separation retrieved: 10000 kHz SpectralGridTest: Input:0.01 GHz<br>
* SpectralGridTest: Number of spectral windows: 1<br>
* SpectralGridTest: Number of channels for spectral window identifier 0: 64<br>