Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deprecate HEMCO_CESM preprocessor constant. Now use MODEL_CESM #197

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Core/hco_types_mod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,9 @@ MODULE HCO_TYPES_MOD
INTEGER :: HcoID ! HEMCO species ID
INTEGER :: ModID ! Model species ID
CHARACTER(LEN= 31) :: SpcName ! species names
#ifdef HEMCO_CESM
#ifdef MODEL_CESM
INTEGER :: DimMax ! Maximum dimensions supported: 2 (2-D), 3 (3-D)
! HEMCO_CESM only, as 3-D emissions must be listed
jimmielin marked this conversation as resolved.
Show resolved Hide resolved
! CESM model only, as 3-D emissions must be listed
! in extfrc_list to be supported by CESM/CAM.
#endif
END TYPE ModSpc
Expand Down
2 changes: 1 addition & 1 deletion src/Core/hcoio_read_std_mod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1354,7 +1354,7 @@ SUBROUTINE HCOIO_Read( HcoState, Lct, RC )

! Note: This seems to be a soft restriction - removing this
! does not conflict with MESSy regridding. Need to check (hplin, 5/30/20)
! This has to be used for WRF-GC and HEMCO_CESM so ifdefd out
! This has to be used for WRF-GC and CESM so ifdefd out
#endif

#if defined( MODEL_WRF ) || defined( MODEL_CESM )
Expand Down