Skip to content

Commit

Permalink
Removed jlogfile references.
Browse files Browse the repository at this point in the history
  • Loading branch information
henrywinterbottom-wxdev committed Feb 7, 2024
1 parent 5894ca2 commit 4745d4a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 15 deletions.
5 changes: 2 additions & 3 deletions ush/minmon_xtrct_costs.pl
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,15 @@
#
#---------------------------

if ($#ARGV != 4 ) {
print "usage: minmon_xtrct_costs.pl SUFFIX PDY cyc infile jlogfile\n";
if ($#ARGV != 3 ) {
print "usage: minmon_xtrct_costs.pl SUFFIX PDY cyc infile\n";
exit;
}
my $suffix = $ARGV[0];

my $pdy = $ARGV[1];
my $cyc = $ARGV[2];
my $infile = $ARGV[3];
my $jlogfile = $ARGV[4];

my $use_costterms = 0;
my $no_data = 0.00;
Expand Down
3 changes: 1 addition & 2 deletions ush/minmon_xtrct_gnorms.pl
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ sub updateGnormData {
#---------------------------------------------------------------------------

if ($#ARGV != 4 ) {
print "usage: minmon_xtrct_gnorms.pl SUFFIX pdy cyc infile jlogfile\n";
print "usage: minmon_xtrct_gnorms.pl SUFFIX pdy cyc infile \n";
exit;
}

Expand All @@ -195,7 +195,6 @@ sub updateGnormData {
my $pdy = $ARGV[1];
my $cyc = $ARGV[2];
my $infile = $ARGV[3];
my $jlogfile = $ARGV[4];


my $scr = "minmon_xtrct_gnorms.pl";
Expand Down
6 changes: 2 additions & 4 deletions ush/minmon_xtrct_reduct.pl
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,18 @@
# reduction.ieee_d files ready for GrADS use.
#---------------------------------------------------------------------------

if ($#ARGV != 4 ) {
print "usage: minmon_xtrct_reduct.pl SUFFIX pdy cyc infile jlogfile\n";
if ($#ARGV != 3 ) {
print "usage: minmon_xtrct_reduct.pl SUFFIX pdy cyc infile\n";
print " suffix is data source identifier\n";
print " pdy is YYYYMMDD of the cycle to be processed\n";
print " cyc is HH of the cycle to be processed\n";
print " infile is the data file containing the reduction stats\n";
print " jlogfile is the job log file\n";
exit;
}
my $suffix = $ARGV[0];
my $pdy = $ARGV[1];
my $cyc = $ARGV[2];
my $infile = $ARGV[3];
my $jlogfile = $ARGV[4];

my $scr = "minmon_xtrct_reduct.pl";
print "$scr has started\n";
Expand Down
2 changes: 0 additions & 2 deletions ush/radmon_verf_time.sh
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,6 @@ source "${HOMEgfs}/ush/preamble.sh"
####################################################################

# File names
#pgmout=${pgmout:-${jlogfile}}
#touch $pgmout

radmon_err_rpt=${radmon_err_rpt:-${USHgfs}/radmon_err_rpt.sh}
base_file=${base_file:-${PARMmonitor}/gdas_radmon_base.tar}
Expand Down
4 changes: 0 additions & 4 deletions ush/syndat_getjtbul.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,6 @@
# TANK_TROPCY - path to home directory containing tropical cyclone record
# data base

# Imported variables that can be passed in:
# jlogfile - path to job log file (skipped over by this script if not
# passed in)

source "$HOMEgfs/ush/preamble.sh"

EXECSYND=${EXECSYND:-${HOMESYND}/exec}
Expand Down

0 comments on commit 4745d4a

Please sign in to comment.