Changeset 5252 for LMDZ6/trunk/libf/dyn3d_common
- Timestamp:
- Oct 22, 2024, 2:09:45 PM (2 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/trunk/libf/dyn3d_common/infotrac.F90
r5251 r5252 118 118 SUBROUTINE init_infotrac 119 119 USE control_mod, ONLY: planet_type 120 #ifdef REPROBUS 121 USE CHEM_REP, ONLY: Init_chem_rep_trac 122 #endif 123 USE lmdz_cppkeys_wrapper, ONLY: CPPKEY_INCA 120 USE lmdz_reprobus_wrappers, ONLY: Init_chem_rep_trac 121 USE lmdz_cppkeys_wrapper, ONLY: CPPKEY_INCA, CPPKEY_REPROBUS, CPPKEY_STRATAER 124 122 IMPLICIT NONE 125 123 !============================================================================================================================== … … 202 200 END IF 203 201 CASE('repr') 204 #ifndef REPROBUS 202 IF (.NOT. CPPKEY_REPROBUS) THEN 205 203 CALL abort_gcm(modname, 'You must add cpp key REPROBUS and compile with REPROBUS code', 1) 206 #endif 204 END IF 207 205 CASE('coag') 208 #ifndef CPP_StratAer 206 IF (.NOT. CPPKEY_STRATAER) THEN 209 207 CALL abort_gcm(modname, 'You must add cpp key StratAer and compile with StratAer code', 1) 210 #endif 208 END IF 211 209 END SELECT 212 210 … … 279 277 !--------------------------------------------------------------------------------------------------------------------------- 280 278 281 #ifdef REPROBUS 279 IF (CPPKEY_REPROBUS) THEN 282 280 CALL Init_chem_rep_trac(nbtr, nqo, tracers(:)%name) 283 #endif 281 END IF 284 282 285 283 !==============================================================================================================================
Note: See TracChangeset
for help on using the changeset viewer.