00001 /* 00002 * Copyright (C) 2007 Bernd Machenschalk, Jolien Creighton 00003 * 00004 * This program is free software; you can redistribute it and/or modify 00005 * it under the terms of the GNU General Public License as published by 00006 * the Free Software Foundation; either version 2 of the License, or 00007 * (at your option) any later version. 00008 * 00009 * This program is distributed in the hope that it will be useful, 00010 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00012 * GNU General Public License for more details. 00013 * 00014 * You should have received a copy of the GNU General Public License 00015 * along with with program; see the file COPYING. If not, write to the 00016 * Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, 00017 * MA 02111-1307 USA 00018 */ 00019 00020 /**** <lalVerbatim file="BlockTestCV"> 00021 * Author: Matthew M. Tibbits 00022 * $Id: BlockTest.c,v 1.3 2007/06/08 14:41:43 bema Exp $ 00023 **** </lalVerbatim> */ 00024 00025 /**** <lalLaTeX> 00026 * \subsection{Program \texttt{BlockTest.c}} 00027 * 00028 * \subsubsection*{Usage} 00029 * 00030 * \begin{verbatim} 00031 * BlockTest 00032 * \end{verbatim} 00033 * 00034 * \subsubsection*{Description} 00035 * 00036 * \vfill{\footnotesize\input{BlockTestCV}} 00037 **** </lalLaTeX> */ 00038 00039 #include <stdio.h> 00040 #include <lal/LALStdlib.h> 00041 #include <lal/BlockRho.h> 00042 00043 #include <lal/LALRCSID.h> 00044 NRCSID (BLOCKTESTC,"$Id: BlockTest.c,v 1.3 2007/06/08 14:41:43 bema Exp $"); 00045 00046 #define TestStatus( ps ) \ 00047 if ( (ps)->statusCode ) { \ 00048 fprintf( stderr, "Failed LAL routine near line %d\n", __LINE__ ); \ 00049 exit( 1 ); \ 00050 } else ((void)0) 00051 00052 int lalDebugLevel = LALMSGLVL3; 00053 00054 int main( void ) 00055 { 00056 return 77; 00057 }
1.5.2