ocssw  1.0
/disk01/web/ocssw/build/inc/swfinc/l3bin_info.h (r8218/r3)
Go to the documentation of this file.
00001 /******************************************************************************
00002 
00003 l3bin_info.h - include file for binning information
00004 
00005 ******************************************************************************/
00006 
00007 #define M_PI         3.14159265358979323846
00008 
00009 #ifdef  BIN_INIT /*  Used once in a program  */
00010 
00011 int NUMCOLS, NUMROWS;
00012 float SEAM_LON;
00013 int Basebin[2160];  /*  List of start bin # for each row  */
00014 float   Latbin[2160];   /*  List of latitude at that bin row  */
00015 int Numbin[2160];   /*  # of bins in this row  */
00016 
00017 int Totalbins;   /*  grand total # of bins  */
00018 
00019 int     bins_filled;  /*  logical, set to 1 if above arrays have 
00020                           been initialized  */
00021 
00022 #else
00023 
00024 extern int NUMCOLS, NUMROWS;
00025 extern float SEAM_LON;
00026 extern int     Basebin[2160];
00027 extern float   Latbin[2160];
00028 extern int     Numbin[2160];
00029 
00030 extern int     Totalbins;
00031 
00032 extern int     bins_filled;
00033 
00034 #endif