1 |
C $Header: /u/gcmpack/MITgcm_contrib/gael/verification/global_oce_cs32/code/ECCO_OPTIONS.h,v 1.1 2016/05/29 12:37:27 gforget Exp $ |
2 |
C $Name: $ |
3 |
|
4 |
CBOP |
5 |
C !ROUTINE: ECCO_OPTIONS.h |
6 |
C !INTERFACE: |
7 |
C #include "ECCO_OPTIONS.h" |
8 |
|
9 |
C !DESCRIPTION: |
10 |
C *==================================================================* |
11 |
C | CPP options file for ECCO (ecco) package: |
12 |
C | Control which optional features to compile in this package code. |
13 |
C *==================================================================* |
14 |
CEOP |
15 |
|
16 |
#ifndef ECCO_OPTIONS_H |
17 |
#define ECCO_OPTIONS_H |
18 |
#include "PACKAGES_CONFIG.h" |
19 |
#include "CPP_OPTIONS.h" |
20 |
|
21 |
#ifdef ALLOW_ECCO |
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 |
|
30 |
C-- Package-specific Options & Macros go here |
31 |
|
32 |
C allow for generic cost function and integral terms |
33 |
#define ALLOW_GENCOST_CONTRIBUTION |
34 |
C allow for 3 dimensional generic terms |
35 |
#define ALLOW_GENCOST3D |
36 |
|
37 |
C include global mean steric sea level correction |
38 |
#define ALLOW_PSBAR_STERIC |
39 |
C allow for near-shore and high-latitude altimetry |
40 |
#define ALLOW_SHALLOW_ALTIMETRY |
41 |
#define ALLOW_HIGHLAT_ALTIMETRY |
42 |
|
43 |
C allow for In-Situ Profiles cost function contribution |
44 |
#define ALLOW_PROFILES_CONTRIBUTION |
45 |
|
46 |
C cost function output format |
47 |
#define ALLOW_ECCO_OLD_FC_PRINT |
48 |
|
49 |
C re-activate deprecated codes (just in case ... but not recommended) |
50 |
#undef ECCO_CTRL_DEPRECATED |
51 |
|
52 |
#endif /* ndef ECCO_CPPOPTIONS_H */ |
53 |
#endif /* ALLOW_ECCO */ |
54 |
#endif /* ECCO_OPTIONS_H */ |
55 |
|