framerootr

Returns the root name for images

usage: framerootr: [-h, --help]

-h , --help

show this help message and exit

#! @KPYTHON@

from KCWI import Procs
import argparse,sys

# parsing arguments
description = "Returns the root name for images"
parser = argparse.ArgumentParser(description=description)


if __name__=="__main__":


   args = parser.parse_args()

   sys.stdout.write(str(Procs.frameroot(channel='red'))+"\n")