# | Line 1272 | Line 1272 | int computeAbsFlux_los(float *los, int * | |
---|---|---|
1272 | int i = 0; | |
1273 | int j = 0; | |
1274 | int count_mask_los = 0; | |
1275 | – | int countabit = 0; |
1275 | double sum = 0.0; | |
1276 | *absFlux_los = 0.0; | |
1277 | *mean_vf_los_ptr = 0.0; | |
# | Line 1285 | Line 1284 | int computeAbsFlux_los(float *los, int * | |
1284 | for (j = 0; j < ny; j++) | |
1285 | { | |
1286 | if ( bitmask[j * nx + i] < 30 ) continue; | |
1287 | < | if isnan(los[j * nx + i]) |
1289 | < | {countabit++; continue;} |
1287 | > | if isnan(los[j * nx + i]) continue; |
1288 | sum += (fabs(los[j * nx + i])); | |
1289 | count_mask_los++; | |
1290 | } |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |