1 |
gforget |
1.1 |
C $Header: /u/gcmpack/MITgcm_contrib/gael/verification/global_oce_llc90/code/ECCO_CPPOPTIONS.h,v 1.15 2014/10/18 14:22:34 gforget Exp $ |
2 |
|
|
C $Name: $ |
3 |
|
|
|
4 |
|
|
CBOP |
5 |
|
|
C !ROUTINE: CTRL_OPTIONS.h |
6 |
|
|
C !INTERFACE: |
7 |
|
|
C #include "CTRL_OPTIONS.h" |
8 |
|
|
|
9 |
|
|
C !DESCRIPTION: |
10 |
|
|
C *==================================================================* |
11 |
|
|
C | CPP options file for Control (ctrl) package: |
12 |
|
|
C | Control which optional features to compile in this package code. |
13 |
|
|
C *==================================================================* |
14 |
|
|
CEOP |
15 |
|
|
|
16 |
|
|
#ifndef CTRL_OPTIONS_H |
17 |
|
|
#define CTRL_OPTIONS_H |
18 |
|
|
#include "PACKAGES_CONFIG.h" |
19 |
|
|
#include "CPP_OPTIONS.h" |
20 |
|
|
|
21 |
|
|
#ifdef ALLOW_CTRL |
22 |
|
|
#ifdef ECCO_CPPOPTIONS_H |
23 |
|
|
|
24 |
|
|
C-- When multi-package option-file ECCO_CPPOPTIONS.h is used (directly included |
25 |
|
|
C in CPP_OPTIONS.h), this option file is left empty since all options that |
26 |
|
|
C are specific to this package are assumed to be set in ECCO_CPPOPTIONS.h |
27 |
|
|
|
28 |
|
|
#else /* ndef ECCO_CPPOPTIONS_H */ |
29 |
|
|
C ================================================================== |
30 |
|
|
C-- Package-specific Options & Macros go here |
31 |
|
|
|
32 |
|
|
C o I/O and pack settings |
33 |
|
|
#define CTRL_SET_PREC_32 |
34 |
|
|
#define ALLOW_NONDIMENSIONAL_CONTROL_IO |
35 |
|
|
#define ALLOW_PACKUNPACK_METHOD2 |
36 |
|
|
|
37 |
|
|
C o sets of controls |
38 |
|
|
#define ALLOW_GENTIM2D_CONTROL |
39 |
|
|
#define ALLOW_GENARR2D_CONTROL |
40 |
|
|
#define ALLOW_GENARR3D_CONTROL |
41 |
|
|
|
42 |
|
|
C o use pkg/smooth correlation operator (incl. smoother) for 3D controls (Weaver, Courtier 01) |
43 |
|
|
C This CPP option just sets the default for ctrlSmoothCorrel23 to .TRUE. |
44 |
|
|
#define ALLOW_SMOOTH_CORREL3D |
45 |
|
|
C o use pkg/smooth correlation operator (incl. smoother) for 2D controls (Weaver, Courtier 01) |
46 |
|
|
C This CPP option just sets the default for ctrlSmoothCorrel2D to .TRUE. |
47 |
|
|
#define ALLOW_SMOOTH_CORREL2D |
48 |
|
|
|
49 |
|
|
C o impose bounds on controls |
50 |
|
|
#define ALLOW_ADCTRLBOUND |
51 |
|
|
|
52 |
|
|
C o rotate u/v vector control to zonal/meridional |
53 |
|
|
C components |
54 |
|
|
#define ALLOW_ROTATE_UV_CONTROLS |
55 |
|
|
|
56 |
|
|
C ================================================================== |
57 |
|
|
#endif /* ndef ECCO_CPPOPTIONS_H */ |
58 |
|
|
#endif /* ALLOW_CTRL */ |
59 |
|
|
#endif /* CTRL_OPTIONS_H */ |
60 |
|
|
|