strf/rftrace.h

9 lines
221 B
C
Raw Normal View History

2014-03-24 05:22:20 -06:00
struct trace {
2014-03-24 09:41:38 -06:00
int satno,n,site;
2014-03-24 05:22:20 -06:00
double *mjd;
double *freq;
float *za;
};
struct trace *compute_trace(double *mjd,int n,int site_id,float fmin,float fmax,int *nsat);
2014-03-24 09:41:38 -06:00
void identify_trace(struct trace t,int satno);