Skip to content

Commit

Permalink
Per issue #1950, put in some cout statements for testing. SL
Browse files Browse the repository at this point in the history
  • Loading branch information
Seth Linden committed Mar 16, 2022
1 parent 7635147 commit 328cba5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions met/src/libcode/vx_statistics/pair_data_point.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1141,7 +1141,12 @@ void VxPairDataPoint::add_point_obs(float *hdr_arr, const char *hdr_typ_str,
// Otherwise, check for the obs Station ID's presence in the
// masking SID list
else if(pd[i][j][0].mask_sid_ptr != (StringArray *) 0) {

if(pd[i][j][0].mask_sid_ptr->Sorted)
cout << "pd[i][j][0].mask_sid_ptr is Sorted!" << endl;

if(!pd[i][j][0].mask_sid_ptr->has(hdr_sid_str)) {
cout << "rejected hdr_sid_str = " << hdr_sid_str << endl;
inc_count(rej_mask, i, j);
continue;
}
Expand Down

0 comments on commit 328cba5

Please sign in to comment.