resio.h
1/***************************************************************************
2 *
3 * Copyright (C) 1999 by Willem van Straten
4 * Licensed under the Academic Free License version 2.1
5 *
6 ***************************************************************************/
7#ifndef __RESIO_H
8#define __RESIO_H
9
10#ifdef __cplusplus
11extern "C" {
12#endif
13
14 void fortopen_ (int* lun, char* filename, int filename_length);
15 void fortclose_ (int* lun);
16
17 /* I/O function to read from the resid2.tmp file produced by TEMPO */
18 void resread_ (int* lun, double* mjd, double* resiturns, double* resitimes,
19 double* phase, double* freq, double* weight, double* error,
20 double* preres, int* status);
21
22 void covn_ (int* lun, int* nparm);
23
24 void covread_ (int* lun, int* nparm, char* parm_names,
25 double* gcor, double* sig, double* cov);
26
27#ifdef __cplusplus
28}
29#endif
30
31#endif
32
33

Generated using doxygen 1.14.0