Changes between Version 5 and Version 6 of Documentation/UserGuide/NewFlag


Ignore:
Timestamp:
2020-03-19T17:17:59+01:00 (4 years ago)
Author:
bguenet
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/UserGuide/NewFlag

    v5 v6  
    1818== Read the flag from the parameter file == 
    1919 
    20 Next, you need to read the flag value. Don't forget to wrote a default value. This is done in ../modeles/ORCHIDEE/src_sechiba/sechiba.f90 in the subroutine sechiba_init 
     20Next, you need to read the flag value. Don't forget to wrote a default value. This is done in ../modeles/ORCHIDEE/src_parameter/control.f90 in the subroutine sechiba_init 
    2121 
    2222{{{ 
     23    !Config Key   = OK_NAMEOFNEWFLAG 
     24    !Config Desc  = Short description of what your flag is doing 
     25    !Config If    = If your flag is called only if another is activated (e.g. OK_STOMATE) wrote the name of the this flag 
     26    !Config Def   = FALSE 
     27    !Config Help  = More detailled description of what your flag is doing 
    2328    ok_NameOfNewFlag=.FALSE. 
    2429    CALL getin_p('OK_NAMEOFNEWFLAG', ok_NameOfNewFlag)