ASM #649 BOIVerifySumTemps crashes on dbName

Change-Id: Iaf05fcbae36ca0afe4c7350b4acf512f8b25111c

Former-commit-id: 4d57e40049 [formerly cfe7f318d8 [formerly 164a7a624780596376b68b7488257b94d4661e80]]
Former-commit-id: cfe7f318d8
Former-commit-id: 10257af037
This commit is contained in:
Zhidong.Hao 2014-11-26 14:10:27 -05:00
parent d345470657
commit 718f3bed15

View file

@ -21,6 +21,7 @@
# ------------ ---------- ----------- --------------------------
# 11/21/13 16770 ryu Change name of temporary files
# for dual domain.
# 11/26/2014 #649 zhao changed "dbName" to "dbid"
#=====================================================================
#
# S T A R T C O N F I G U R A T I O N S E C T I O N
@ -594,11 +595,11 @@ class Procedure (SmartScript.SmartScript):
# Read the climo grids on either side
#
if prevClimoStart!=self.prevClimoSave:
temp=self.getGrids(dbName,parmName,"SFC",prevClimoTR)
temp=self.getGrids(dbid,parmName,"SFC",prevClimoTR)
self.prevClimo=self.convertKtoF(temp)
self.prevClimoSave=prevClimoStart
if nextClimoStart!=self.nextClimoSave:
temp=self.getGrids(dbName,parmName,"SFC",nextClimoTR)
temp=self.getGrids(dbid,parmName,"SFC",nextClimoTR)
self.nextClimo=self.convertKtoF(temp)
self.nextClimoSave=nextClimoStart
#