OB.DAAC Logo
NASA Logo
Ocean Color Science Software

ocssw V2022
runcal.h
Go to the documentation of this file.
1 /*
2  *******************************************************************************
3 
4  !C-INC
5 
6  !Description:
7  calibration structure include file
8 
9  !Input Parameters: N/A
10  !Output Parameters: N/A
11 
12  !Revision History:
13 
14  $Id: runcal.h,v 1.2 2012/04/26 18:55:32 sue Exp $
15 
16  $Log: runcal.h,v $
17  Revision 1.2 2012/04/26 18:55:32 sue
18  Changes made by seadas group for seadas6.3, newer fortran, and/or 64 bit mode.
19 
20  Revision 1.3 2002/08/26 11:46:26 sue
21  Update copyright notices for year 2002.
22 
23  Revision 1.2 1997/11/14 14:12:59 sue
24  Fix prologs.
25 
26  Revision 1.1.1.1 1996/09/17 16:40:07 angel
27 
28  * Revision 1.2 1992/07/13 13:24:18 angel
29  * Change from int32 to INT32, etc. This is the start of support for the
30  * Alpha chip.
31  *
32  * Revision 1.1 1992/03/12 21:16:46 angel
33  * Initial revision
34  *
35  */
36 
37 /*
38  !Team-unique Header:
39 
40  Copyright 1988-2002 by Rosenstiel School of Marine and Atmospheric Science,
41  University of Miami, Miami, Florida.
42 
43  All Rights Reserved
44 
45  Permission to use, copy, modify, and distribute this software and its
46  documentation for non-commercial purposes and without fee is hereby granted,
47  provided that the above copyright notice appear in all copies and that both
48  that copyright notice and this permission notice appear in supporting
49  documentation, and that the names of University of Miami and/or RSMAS not be
50  used in advertising or publicity pertaining to distribution of the software
51  without specific, written prior permission.
52 
53  UNIVERSITY OF MIAMI DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
54  INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT
55  SHALL UNIVERSITY OF MIAMI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
56  DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
57  WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
58  OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
59 
60  !References and credits:
61  Written by:
62  University of Miami
63  Rosenstiel School for Marine and Atmospheric Science
64  Division of Meteorology and Physical Oceanography
65  4600 Rickenbacker Cswy
66  Miami,Fl
67  Contact: SWalsh@rsmas.miami.edu
68 
69  !Design Notes
70 
71  !END*************************************************************
72  */
73 
74 #ifndef _RUNCAL_H_
75 #define _RUNCAL_H_
76 
77 #include "stdint.h"
78 
79 #define MAX_RUNCAL 75
80 
81 typedef struct {
82  int32_t numcal;
83  int32_t intrvl;
84 
85  struct _runCalEnt {
86  float cenlin;
87  float prtemp;
88  float slope[3];
89  float intcp[3];
90  } runcal[MAX_RUNCAL];
91 } RUN_CAL;
92 
93 #endif /* _RUNCAL_H_ */
int32_t intrvl
Definition: runcal.h:83
float32 slope[]
Definition: l2lists.h:30
Definition: runcal.h:81
int32_t numcal
Definition: runcal.h:82
#define MAX_RUNCAL
Definition: runcal.h:79