00001 /* 00002 * Copyright (C) 2007 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> */ 00021 #ifndef _LALPRIMER_H /* Double-include protection. */ 00022 #define _LALPRIMER_H 00023 00024 #include <lal/LALDatatypes.h> 00025 00026 #ifdef __cplusplus /* C++ protection. */ 00027 extern "C" { 00028 #endif 00029 00030 00031 NRCSID( LALPRIMERH, "$Id: LALPrimer.h,v 1.5 2007/06/08 14:41:52 bema Exp $" ); 00032 00033 #define LALPRIMERH_ENULL 1 00034 #define LALPRIMERH_EDIV0 2 00035 #define LALPRIMERH_MSGENULL "Null pointer" 00036 #define LALPRIMERH_MSGEDIV0 "Division by zero" 00037 00038 void 00039 REAL4Invert( LALStatus *status, REAL4 *output, REAL4 input ); 00040 00041 void 00042 REAL4Divide( LALStatus *status, REAL4 *output, REAL4 numer, REAL4 denom); 00043 00044 00045 #ifdef __cplusplus 00046 } 00047 #endif /* C++ protection. */ 00048 #endif /* Double-include protection. */ 00049 /* </lalVerbatim> */
1.5.2