00001 /* 00002 * Copyright (C) 2007 Jolien Creighton, Patrick Brady, Saikat Ray-Majumder 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 #ifndef _GENERATEBURST_H 00022 #define _GENERATEBURST_H 00023 00024 00025 /* 00026 * ============================================================================ 00027 * 00028 * Preamble 00029 * 00030 * ============================================================================ 00031 */ 00032 00033 00034 #include <lal/LALDatatypes.h> 00035 #include <lal/LIGOMetadataTables.h> 00036 00037 00038 #ifdef __cplusplus 00039 extern "C" { 00040 #pragma } 00041 #endif 00042 00043 00044 NRCSID(GENERATEBURSTH, "$Id: GenerateBurst.h,v 1.17 2008/01/28 01:22:27 kipp Exp $"); 00045 00046 00047 /* 00048 * ============================================================================ 00049 * 00050 * Function Prototypes 00051 * 00052 * ============================================================================ 00053 */ 00054 00055 00056 int XLALGenerateSimBurst( 00057 REAL8TimeSeries **hplus, 00058 REAL8TimeSeries **hcross, 00059 const SimBurst *sim_burst, 00060 double delta_t 00061 ); 00062 00063 00064 int XLALBurstInjectSignals( 00065 REAL8TimeSeries *h, 00066 const SimBurst *sim_burst, 00067 const COMPLEX16FrequencySeries *response 00068 ); 00069 00070 00071 #ifdef __cplusplus 00072 #pragma { 00073 } 00074 #endif 00075 00076 00077 #endif /* _GENERATEBURST_H */
1.5.2