Skip to content

Commit

Permalink
Feature #2476 tc_pairs_diag take 2 (#2705)
Browse files Browse the repository at this point in the history
Co-authored-by: John Halley Gotway <[email protected]>
Co-authored-by: Seth Linden <[email protected]>
Co-authored-by: Seth Linden <[email protected]>
  • Loading branch information
3 people authored Oct 6, 2023
1 parent f266886 commit 021af39
Showing 1 changed file with 16 additions and 10 deletions.
26 changes: 16 additions & 10 deletions src/tools/tc_utils/tc_pairs/tc_pairs.cc
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,17 @@
// that contain all required lead times.
// 011 07/27/18 Halley Gotway Support masks defined by
// the gen_vx_mask tool.
// 012 07/06/22 Howard Soh METplus-Internal #19 Rename main to met_main
// 013 09/28/22 Prestopnik MET #2227 Remove namespace std from header files
// 012 07/06/22 Howard Soh METplus-Internal #19 Rename main
// to met_main
// 013 09/28/22 Prestopnik MET #2227 Remove namespace std
// from header files
// 014 10/06/22 Halley Gotway MET #392 Incorporate diagnostics
// 015 02/20/23 Seth Linden MET #2429 Added option to prevent output of consensus track members
// 016 06/08/23 Halley Gotway MET #2532 Full circle winds are the mean of the non-zero quadrants
// 015 02/20/23 Seth Linden MET #2429 Add option to suppress
// the output of consensus track members
// 016 06/08/23 Halley Gotway MET #2532 Compute full circle
// winds as the mean of the non-zero quadrants
// 017 10/05/23 Seth Linden MET #2476 Include diagnostics in
// consensus track output
//
////////////////////////////////////////////////////////////////////////

Expand Down Expand Up @@ -362,12 +368,6 @@ void process_adecks(const TrackInfoArray &bdeck_tracks) {
mlog << Debug(2)
<< "Added " << i << " CLIPER/SHIFOR baseline track(s).\n";

// Filter the ADECK tracks using the config file information
mlog << Debug(2)
<< "Filtering " << adeck_tracks.n()
<< " ADECK tracks based on config file settings.\n";
filter_tracks(adeck_tracks);

// Append diagnostic data to the tracks
process_diags(adeck_tracks);

Expand All @@ -379,6 +379,12 @@ void process_adecks(const TrackInfoArray &bdeck_tracks) {
mlog << Debug(2)
<< "Added " << i << " ADECK consensus tracks(s).\n";

// Filter the ADECK tracks using the config file information
mlog << Debug(2)
<< "Filtering " << adeck_tracks.n()
<< " ADECK tracks based on config file settings.\n";
filter_tracks(adeck_tracks);

//
// Loop through the ADECK tracks and find a matching BDECK track
//
Expand Down

0 comments on commit 021af39

Please sign in to comment.