Changeset 312


Ignore:
Timestamp:
2011-07-08T14:35:03+02:00 (13 years ago)
Author:
didier.solyga
Message:

Forgot to commit pft_parameters.f90 : replace undef_integer by undef_int which was previously defined in routing.f90

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ORCHIDEE_EXT/ORCHIDEE/src_parameters/pft_parameters.f90

    r289 r312  
    408408      ! 3.1 Initialisation of the correspondance table 
    409409      ! Initialisation of the correspondance table 
    410       pft_to_mtc (:) = undef_integer 
     410      pft_to_mtc (:) = undef_int 
    411411       
    412412      ! 3.2 Reading of the conrrespondance table in the .def file 
     
    416416      !     If the configuration is wrong, send a error message to the user. 
    417417      IF(nvm .EQ. 13 ) THEN 
    418          IF(pft_to_mtc(1) .EQ. undef_integer) THEN 
     418         IF(pft_to_mtc(1) .EQ. undef_int) THEN 
    419419            WRITE(numout,*) 'Note to the user : we will use ORCHIDEE to its standard configuration' 
    420420            pft_to_mtc(:) = (/ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13 /) 
    421421         ENDIF 
    422422      ELSE    
    423          IF(pft_to_mtc(1) .EQ. undef_integer) THEN 
     423         IF(pft_to_mtc(1) .EQ. undef_int) THEN 
    424424            WRITE(numout,*)' The array PFT_TO_MTC is empty : we stop' 
    425425         ENDIF 
Note: See TracChangeset for help on using the changeset viewer.