Loading [MathJax]/extensions/TeX/AMSsymbols.js
LALPulsar 7.1.1.1-8a6b96f
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
SetupData.h
Go to the documentation of this file.
1//
2// Copyright (C) 2016, 2017 Karl Wette
3//
4// This program is free software; you can redistribute it and/or modify
5// it under the terms of the GNU General Public License as published by
6// the Free Software Foundation; either version 2 of the License, or
7// (at your option) any later version.
8//
9// This program is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12// GNU General Public License for more details.
13//
14// You should have received a copy of the GNU General Public License
15// along with with program; see the file COPYING. If not, write to the
16// Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
17// MA 02110-1301 USA
18//
19
20#ifndef _SETUP_DATA_H
21#define _SETUP_DATA_H
22
23///
24/// \file
25/// \ingroup lalpulsar_bin_Weave
26/// \brief Module which handles the setup data
27///
28
29#include "Weave.h"
30
31#include <lal/LALBarycenter.h>
32#include <lal/Segments.h>
33#include <lal/SuperskyMetrics.h>
34
35#ifdef __cplusplus
36extern "C" {
37#endif
38
39///
40/// Setup data which is computed only once for a given search setup
41///
43 /// Reference time at which search is conducted
45 /// List of detector names for which metrics were computed
47 /// Segment list for which metrics were computed
49 /// Reduced supersky parameter-space metrics
51 /// Ephemeris data over time-span of segments
53};
54
56 WeaveSetupData *setup
57);
60 const WeaveSetupData *setup
61);
64 WeaveSetupData *setup
65);
66
67#ifdef __cplusplus
68}
69#endif
70
71#endif // _SETUP_DATA_H
72
73// Local Variables:
74// c-file-style: "linux"
75// c-basic-offset: 2
76// End:
void XLALWeaveSetupDataClear(WeaveSetupData *setup)
Free contents of setup data.
Definition: SetupData.c:40
int XLALWeaveSetupDataWrite(FITSFile *file, const WeaveSetupData *setup)
Write setup data to a FITS file.
Definition: SetupData.c:55
int XLALWeaveSetupDataRead(FITSFile *file, WeaveSetupData *setup)
Read setup data from a FITS file.
Definition: SetupData.c:91
struct tagFITSFile FITSFile
Representation of a FITS file.
Definition: FITSFileIO.h:54
This structure contains all information about the center-of-mass positions of the Earth and Sun,...
Computed supersky metrics, returned by XLALComputeSuperskyMetrics().
Setup data which is computed only once for a given search setup.
Definition: SetupData.h:42
SuperskyMetrics * metrics
Reduced supersky parameter-space metrics.
Definition: SetupData.h:50
LALSegList * segments
Segment list for which metrics were computed.
Definition: SetupData.h:48
LIGOTimeGPS ref_time
Reference time at which search is conducted.
Definition: SetupData.h:44
LALStringVector * detectors
List of detector names for which metrics were computed.
Definition: SetupData.h:46
EphemerisData * ephemerides
Ephemeris data over time-span of segments.
Definition: SetupData.h:52