removed ecmwf local paramids with srcsink in if clause

This commit is contained in:
Robert Osinski 2024-06-17 10:31:52 +00:00
parent f11e63fda8
commit 63fd8ac2f9
1 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ if (tablesVersion >= 31 ) {
concept chemShortName (unknown,"chemShortName.def",conceptsDir2,conceptsDir1): no_copy,dump;
concept chemFormula (unknown,"chemFormula.def",conceptsDir2,conceptsDir1): no_copy,dump;
if ( !(chemId is minus_one) ) {
if ( chemId != -1 ) {
alias mars.chem = chemId;
alias parameter.chemId = chemId;
alias ls.chemShortName = chemShortName;
@ -47,7 +47,7 @@ if (tablesVersion >= 31 ) {
concept srcSinkName (unknown,"srcSinkName.def",conceptsDir2,conceptsDir1): no_copy,dump;
concept srcSinkShortName (unknown,"srcSinkShortName.def",conceptsDir2,conceptsDir1): no_copy,dump;
if ( !(srcSinkId is minus_one) ) {
if ( srcSinkId != -1 ) {
alias mars.srcSink = srcSinkId;
alias parameter.srcSinkId = srcSinkId;
alias ls.srcSinkShortName = srcSinkShortName;