#!/usr/bin/env python3
import argparse
from compphysutils.graphics.plotter import fromConfig

argparser = argparse.ArgumentParser(description="Plots the graph described in the config file.")
argparser.add_argument("configfilenames", nargs="+", help="name of the config file(s) to process")

args = argparser.parse_args()
for filename in args.configfilenames:
	fromConfig(filename).clear()
