00001 /* 00002 * Copyright (C) 2007 Stephen Fairhurst 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 00021 /** \defgroup GenerateInspRing 00022 * \ingroup inject 00023 * \author S.Fairhurst 00024 * 00025 * \brief Module for pasting a (realistic) ringdown on the end of an inspiral 00026 * 00027 00028 * 00029 */ 00030 00031 /** \file GenerateInspRing.h 00032 * \ingroup GenerateInspRing 00033 * \date $Date: 2008/01/28 17:53:34 $ 00034 * 00035 * 00036 */ 00037 00038 00039 /* includes */ 00040 #include <stdlib.h> 00041 #include <math.h> 00042 #include <stdio.h> 00043 #include <stdlib.h> 00044 #include <string.h> 00045 #include <lal/LALStdlib.h> 00046 #include <lal/LALConstants.h> 00047 #include <lal/AVFactories.h> 00048 #include <lal/SeqFactories.h> 00049 #include <lal/LIGOMetadataTables.h> 00050 #include <lal/Units.h> 00051 00052 #ifdef __cplusplus /* C++ protection. */ 00053 extern "C" { 00054 #endif 00055 00056 NRCSID( GENERATEINSPRING, "$Id: GenerateInspRing.h,v 1.6 2008/01/28 17:53:34 sfairhur Exp $"); 00057 00058 CoherentGW * 00059 XLALGenerateInspRing( 00060 CoherentGW *waveform, 00061 SimInspiralTable *thisEvent, 00062 SimRingdownTable *thisRingEvent, 00063 int injectSignalType 00064 ); 00065 00066 #ifdef __cplusplus 00067 } /* Close C++ protection */ 00068 #endif 00069 00070
1.5.2