iri2rm.h
1 /***************************************************************************
2  *
3  * Copyright (C) 2005 by Willem van Straten
4  * Licensed under the Academic Free License version 2.1
5  *
6  ***************************************************************************/
7 // psrchive/More/Polarimetry/iri2001/iri2rm.h
8 
9 #ifdef HAVE_CONFIG_H
10 #include <config.h>
11 #endif
12 
13 #ifndef __IRI2RM_H
14 #define __IRI2RM_H
15 
16 #ifdef __cplusplus
17 extern "C" {
18 #endif
19 
20 #define iri2rm F77_FUNC(iri2rm,IRI2RM)
21 
22  /*
23  C-----------------------------------------------------------------
24  C
25  C INPUT: Glong Geographic Longitude East in degrees
26  C Glati Geographic Latitude North in degrees
27  C year Year, e.g. 1985
28  C mmdd (-ddd) Date (or Day of Year as a negative number)
29  C UT Universal Time in decimal hours
30  C az Azimuth in degrees
31  C el Elevation in degrees
32  */
33 
34  void iri2rm (double* Glong, double* Glati,
35  float* year, int* mmdd, double* ut,
36  float* az, float* el, float* RM);
37 
38 #ifdef __cplusplus
39  }
40 #endif
41 
42 #endif

Generated using doxygen 1.8.17