OB.DAAC Logo
NASA Logo
Ocean Color Science Software

ocssw V2022
input_s.h
Go to the documentation of this file.
1 #ifndef INPUT_S_H_
2 #define INPUT_S_H_
3 
4 #ifndef byte
5 #define byte unsigned char
6 #endif
7 
8 typedef struct input_struct {
9  int flag;
10  short int sc_id[2];
11  short int iyear;
12  short int iday;
13  int msec;
14  float sc_ana[40];
15  byte sc_dis[40];
16  float inst_ana[5][40];
17  byte inst_dis[5][32];
18  int nflag[8];
19 } input_sType;
20 
21 #endif /* INPUT_S_H_ */
short int iday
Definition: input_s.h:12
short int iyear
Definition: input_s.h:11
int msec
Definition: input_s.h:13
float sc_ana[40]
Definition: input_s.h:14
byte sc_dis[40]
Definition: input_s.h:15
byte inst_dis[5][32]
Definition: input_s.h:17
int flag
Definition: input_s.h:9
int nflag[8]
Definition: input_s.h:18
float inst_ana[5][40]
Definition: input_s.h:16
short int sc_id[2]
Definition: input_s.h:10