-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ECC-1821 adding configurations for mmsf/an
- Loading branch information
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
if (levtype is "o2d" || levtype is "o3d") { | ||
alias mars.step = stepRange; | ||
} else { | ||
alias mars.step = endStep; | ||
} | ||
|
||
if (class is "od") { alias mars.system = systemNumber; } | ||
if (class is "me") { alias mars.system = systemNumber; } | ||
if (class is "en") { alias mars.system = systemNumber; } | ||
if (class is "c3") { alias mars.system = systemNumber; } | ||
if (class is "ci") { alias mars.system = systemNumber; } | ||
alias mars.number = perturbationNumber; | ||
alias mars.method = methodNumber; | ||
|
||
if (!(class is "gw")) { # ECC-1448 | ||
alias mars.origin = centre; | ||
} | ||
|
||
# See ECC-624 | ||
if (centre == 80 && subCentre == 98 && class is "c3") { | ||
constant cnmc_cmcc = 'cmcc'; | ||
alias mars.origin = cnmc_cmcc; | ||
} | ||
|
||
if (class is "ci") { unalias mars.method; } | ||
|