00001 /* 00002 * Copyright (C) 2008 J. Creighton, T. 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 00021 #include <lal/LALDatatypes.h> 00022 #include <lal/LALDetectors.h> 00023 00024 00025 #include <lal/LALRCSID.h> 00026 NRCSID(LALSIMULATIONH, "$Id:"); 00027 00028 00029 const LALDetector *XLALInstrumentNameToLALDetector( 00030 const char *string 00031 ); 00032 00033 00034 REAL8TimeSeries *XLALSimDetectorStrainREAL8TimeSeries( 00035 const REAL8TimeSeries *hplus, 00036 const REAL8TimeSeries *hcross, 00037 REAL8 right_ascension, 00038 REAL8 declination, 00039 REAL8 psi, 00040 LALDetector *detector 00041 ); 00042 00043 00044 int XLALSimAddInjectionREAL8TimeSeries( 00045 REAL8TimeSeries *target, 00046 REAL8TimeSeries *h, 00047 const COMPLEX16FrequencySeries *response 00048 );
1.5.2