ocssw  1.0
/disk01/web/ocssw/build/src/l3bin/l3bin_input.h (r8085/r2781)
Go to the documentation of this file.
00001 #ifndef _INPUT_STR_H
00002 #define _INPUT_STR_H
00003 
00004 #include <stdio.h>
00005 
00006 typedef struct input_struct {
00007 
00008   char    infile [FILENAME_MAX];
00009   char    ofile  [FILENAME_MAX];
00010   char    pfile  [FILENAME_MAX];
00011   char    out_parm[1024];
00012   char    tflag;
00013   char    parms[4096];
00014   char    pversion[16];
00015 
00016   int32_t    syear;
00017   int32_t    sday;
00018   int32_t    eyear;
00019   int32_t    eday;
00020 
00021   int32_t    sorbit;
00022   int32_t    eorbit;
00023 
00024   int32_t    reduce_fac;
00025 
00026   int32_t    noext;
00027 
00028   char    merged[4096];
00029 
00030   float   loneast;
00031   float   lonwest;
00032   float   latnorth;
00033   float   latsouth;
00034 
00035   int32_t    verbose;
00036   int32_t    unit_wgt;
00037   int32_t    median;
00038 } instr;
00039 
00040 //int l3bin_input(int argc, char **argv, instr *input); 
00041 
00042 #endif
00043 
00044 
00045