C $Header: /u/gcmpack/MITgcm/pkg/ecco/cost_obcs.F,v 1.4 2010/03/22 02:19:35 jmc Exp $
C $Name: $
#include "COST_CPPOPTIONS.h"
subroutine COST_OBCS(
I myiter,
I mytime,
I mythid
& )
c ==================================================================
c SUBROUTINE cost_obcs
c ==================================================================
c
c o Evaluate cost function contributions for obcs
c
c ==================================================================
c SUBROUTINE cost_obcs
c ==================================================================
implicit none
c == global variables ==
c == routine arguments ==
integer myiter
_RL mytime
integer mythid
c == local variables ==
c == end of interface ==
#ifdef ALLOW_OBCSN_COST_CONTRIBUTION
call COST_OBCSN ( myiter, mytime, mythid )
#endif
#ifdef ALLOW_OBCSS_COST_CONTRIBUTION
call COST_OBCSS ( myiter, mytime, mythid )
#endif
#ifdef ALLOW_OBCSW_COST_CONTRIBUTION
call COST_OBCSW ( myiter, mytime, mythid )
#endif
#ifdef ALLOW_OBCSE_COST_CONTRIBUTION
call COST_OBCSE ( myiter, mytime, mythid )
#endif
end