Merge "ASM #15660 Fixed issues with array not setup in Disagg6hr." into asm_14.4.1

Former-commit-id: b4345d3d2be525233c80ad00bf44ae8f9c61e04a
This commit is contained in:
Matthew Howard 2015-05-14 17:18:31 -05:00 committed by Gerrit Code Review
commit 3b0b0be2d7

View file

@ -672,9 +672,13 @@ public class Disagg6Hr {
/* j = num of rows */
QPEgrids = new double[6][disagg_maxy][disagg_maxx];
for (j = 0; j < disagg_maxx; j++) {
QPEgrids[k][i][j] = -9.0;
for (k = 0; k < 6; k++){
for (i = 0; i < disagg_maxy; i++){
for (j = 0; j < disagg_maxx; j++) {
QPEgrids[k][i][j] = -9.0;
}
}
}
}