Skip to content

Commit

Permalink
Some housekeeping
Browse files Browse the repository at this point in the history
  • Loading branch information
dustinswales committed May 24, 2024
1 parent 0002124 commit f0f1bbc
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions test/cmp_rt2bl.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,26 +16,18 @@
parser = argparse.ArgumentParser()
parser.add_argument('-drt', '--dir_rt', help='Directory containing SCM RT output', required=True)
parser.add_argument('-dbl', '--dir_bl', help='Directory containing SCM RT baselines', required=True)
parser.add_argument('-prt', '--plt_rt', help='If true, create plots of dir_rt', action='store_true')
parser.add_argument('-pbl', '--plt_bl', help='If true, create plots of dir_bl', action='store_true')
parser.add_argument('-pall', '--plt_all', help='If true, create plots of all SCM fields', action='store_true')
parser.add_argument('-dbg', '--debug', help='Debug mode ', action='store_true')

#
def parse_args():
args = parser.parse_args()
dir_rt = args.dir_rt
dir_bl = args.dir_bl
plt_rt = args.plt_rt
plt_bl = args.plt_bl
plt_all = args.plt_all
debug = args.debug
return (dir_rt, dir_bl, plt_rt, plt_bl, plt_all, debug)
return (dir_rt, dir_bl)

#
def main():
#
(dir_rt, dir_bl, plt_rt, plt_bl, plt_all, debug) = parse_args()
(dir_rt, dir_bl) = parse_args()

#
error_count = 0
Expand Down

0 comments on commit f0f1bbc

Please sign in to comment.