| 1 |
cnh |
1.4 |
C $Header: /u/gcmpack/models/MITgcmUV/model/inc/DXF_MACROS.h,v 1.3 2001/02/04 14:38:44 cnh Exp $ |
| 2 |
|
|
C $Name: $ |
| 3 |
cnh |
1.1 |
C |
| 4 |
cnh |
1.4 |
CBOP |
| 5 |
|
|
C !ROUTINE: DXF_MACROS.h |
| 6 |
|
|
C !INTERFACE: |
| 7 |
|
|
C include DXF_MACROS.h |
| 8 |
|
|
C !DESCRIPTION: \bv |
| 9 |
|
|
C *==========================================================* |
| 10 |
|
|
C | DXF_MACROS.h |
| 11 |
|
|
C *==========================================================* |
| 12 |
|
|
C | These macros are used to reduce memory requirement and/or |
| 13 |
|
|
C | memory references when variables are fixed along a given |
| 14 |
|
|
C | axis or axes. |
| 15 |
|
|
C *==========================================================* |
| 16 |
|
|
C \ev |
| 17 |
|
|
CEOP |
| 18 |
cnh |
1.1 |
|
| 19 |
|
|
#ifdef DXF_CONST |
| 20 |
|
|
#define _dxF(i,j,bi,bj) dxF(1,1,1,1) |
| 21 |
|
|
#endif |
| 22 |
|
|
|
| 23 |
cnh |
1.2 |
#ifdef DXF_FX |
| 24 |
cnh |
1.1 |
#define _dxF(i,j,bi,bj) dxF(i,1,bi,1) |
| 25 |
|
|
#endif |
| 26 |
|
|
|
| 27 |
cnh |
1.2 |
#ifdef DXF_FY |
| 28 |
cnh |
1.1 |
#define _dxF(i,j,bi,bj) dxF(1,j,1,bj) |
| 29 |
|
|
#endif |
| 30 |
|
|
|
| 31 |
|
|
#ifndef _dxF |
| 32 |
|
|
#define _dxF(i,j,bi,bj) dxF(i,j,bi,bj) |
| 33 |
|
|
#endif |