/[MITgcm]/MITgcm/model/src/packages_check.F
ViewVC logotype

Contents of /MITgcm/model/src/packages_check.F

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.9 - (show annotations) (download)
Wed Sep 26 18:09:16 2001 UTC (22 years, 8 months ago) by cnh
Branch: MAIN
CVS Tags: checkpoint43a-release1mods, release1_b1, checkpoint43, release1-branch_tutorials, ecco_c44_e19, ecco_c44_e18, ecco_c44_e17, ecco_c44_e16, release1-branch-end, ecco_ice1, ecco_c44_e22, ecco_c44_e25, chkpt44a_pre, ecco_c44_e23, ecco_c44_e20, ecco_c44_e21, ecco_c44_e24, ecco-branch-mod1, ecco-branch-mod2, ecco-branch-mod3, ecco-branch-mod4, ecco-branch-mod5, release1_beta1, checkpoint42, checkpoint41, checkpoint44, release1-branch_branchpoint
Branch point for: c24_e25_ice, release1-branch, release1, ecco-branch, release1_coupled
Changes since 1.8: +23 -14 lines
Bringing comments up to data and formatting for document extraction.

1 C $Header: /u/gcmpack/models/MITgcmUV/model/src/packages_check.F,v 1.8 2001/09/13 17:43:55 adcroft Exp $
2 C $Name: $
3
4 #include "CPP_OPTIONS.h"
5
6 CBOP
7 C !ROUTINE: PACKAGES_CHECK
8 C !INTERFACE:
9 SUBROUTINE PACKAGES_CHECK( myThid )
10 C !DESCRIPTION: \bv
11 C *==========================================================*
12 C | SUBROUTINE PACKAGES_CHECK
13 C | o Check runtime activated packages have been built in.
14 C *==========================================================*
15 C | All packages can be selected/deselected at build time
16 C | ( when code is compiled ) and activated/deactivated at
17 C | runtime. This routine does a quick check to trap packages
18 C | that were activated at runtime but that were not compiled
19 C | in at build time.
20 C *==========================================================*
21 C \ev
22
23 C !USES:
24 IMPLICIT NONE
25 C === Global variables ===
26 #include "SIZE.h"
27 #include "EEPARAMS.h"
28 #include "PARAMS.h"
29
30 C !INPUT/OUTPUT PARAMETERS:
31 C === Routine arguments ===
32 C myThid :: Number of this instances
33 INTEGER myThid
34
35 C !LOCAL VARIABLES:
36 C === Local variables ===
37 C msgBuf :: Informational/error meesage buffer
38 CHARACTER*(MAX_LEN_MBUF) msgBuf
39 CEOP
40
41 #ifdef ALLOW_KPP
42 IF (useKPP) CALL KPP_CHECK( myThid )
43 #else
44 IF (useKPP) CALL PACKAGES_CHECK_ERROR('KPP', myThid)
45 #endif
46
47 #ifdef ALLOW_GMREDI
48 IF (useGMRedi) CALL GMREDI_CHECK( myThid )
49 #else
50 IF (useGMRedi) CALL PACKAGES_CHECK_ERROR('GMREDI', myThid)
51 #endif
52
53 #ifdef ALLOW_OBCS
54 IF (useOBCS) CALL OBCS_CHECK( myThid )
55 #else
56 IF (useOBCS) CALL PACKAGES_CHECK_ERROR('OBCS', myThid)
57 #endif
58
59 #ifndef ALLOW_AIM
60 IF (useAIM) CALL PACKAGES_CHECK_ERROR('AIM', myThid)
61 #endif
62
63 #ifndef ALLOW_FLT
64 IF (useFLT) CALL PACKAGES_CHECK_ERROR('FLT', myThid)
65 #endif
66
67 RETURN
68 END

  ViewVC Help
Powered by ViewVC 1.1.22