New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
WorkingGroups/TAM/ReferenceManual/CodingNorm (diff) – NEMO

Changes between Version 4 and Version 5 of WorkingGroups/TAM/ReferenceManual/CodingNorm


Ignore:
Timestamp:
2009-10-23T15:32:52+02:00 (15 years ago)
Author:
vigilant
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WorkingGroups/TAM/ReferenceManual/CodingNorm

    v4 v5  
    1616[[Color( white , red,  Should we add )]]: 
    1717 * usage of USE in TAM: it is preferred to use ONLY statement to have a more readable code.  
     18 
     19== Module Structure ==  
     20 
     21We remind here the basic structure of a TAM module. 
     22 
     23For most of the OPA modules we have: 
     24{{{ 
     25 Module 
     26  * subroutine1 
     27  * subroutine2 
     28  * ... 
     29  * subroutine_init/ctl 
     30}}} 
     31 
     32It would correspond to the following layout in OPA_TAM: 
     33{{{ 
     34 Module_tam 
     35  * subroutine1_tan 
     36  * subroutine2_tan 
     37  * ... 
     38  * subroutine1_adj 
     39  * subroutine2_adj 
     40  * ... 
     41  * subroutine_tam_init/ctl 
     42  * ... 
     43  * subroutine_adj_tst1 
     44  * subroutine_adj_tst2 
     45  * ... 
     46 
     47}}}