Former-commit-id:a02aeb236c
[formerly9f19e3f712
] [formerlya02aeb236c
[formerly9f19e3f712
] [formerly06a8b51d6d
[formerly 64fa9254b946eae7e61bbc3f513b7c3696c4f54f]]] Former-commit-id:06a8b51d6d
Former-commit-id:8e80217e59
[formerly3360eb6c5f
] Former-commit-id:377dcd10b9
58 lines
1.2 KiB
C
58 lines
1.2 KiB
C
/************************************************************************
|
|
* dgsubg.h *
|
|
* *
|
|
* This header file is used in the grid diagnostics package. *
|
|
* *
|
|
** *
|
|
* Log: *
|
|
* D.W.Plummer/NCEP 03/05 From DGCMN.CMN *
|
|
* R. Tian/SAIC 01/06 Modified *
|
|
* D.W.Plummer/NCEP 10/06 Rm transfer grid from dgsubg structure *
|
|
************************************************************************/
|
|
|
|
#ifndef _DGSUBG_H
|
|
#define _DGSUBG_H
|
|
|
|
#include "gemprm.h"
|
|
|
|
/*
|
|
* This structure contains information needed for the placement of
|
|
* data on the subset internal grid.
|
|
*/
|
|
struct dgsubg {
|
|
/*
|
|
* reference navigation.
|
|
*/
|
|
float refnav[LLNNAV];
|
|
|
|
/*
|
|
* globe wrapping grid flg.
|
|
*/
|
|
int gwrapg;
|
|
|
|
/*
|
|
* flag for DG_SUBG called.
|
|
*/
|
|
int dgsubg;
|
|
|
|
/*
|
|
* shift position for grid re-arrangement.
|
|
*/
|
|
int ishift;
|
|
|
|
/*
|
|
* subset grid index bound on re-arranged transfer grid.
|
|
*/
|
|
int jsgxmn;
|
|
int jsgxmx;
|
|
int jsgymn;
|
|
int jsgymx;
|
|
|
|
/*
|
|
* subset stride throug transfer grid in x & y.
|
|
*/
|
|
int jsgxsk;
|
|
int jsgysk;
|
|
};
|
|
|
|
#endif
|