34 lines
1.1 KiB
Python
34 lines
1.1 KiB
Python
|
#!/usr/bin/env python
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
import argparse
|
||
|
|
||
|
from pylot.core.util.version import get_git_version as _getVersionString
|
||
|
from pylot.core.io.phases import reassess_pilot_db
|
||
|
|
||
|
__version__ = _getVersionString()
|
||
|
__author__ = 'S. Wehling-Benatelli'
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
parser = argparse.ArgumentParser(
|
||
|
description='reassess old PILOT event data base in terms of consistent '
|
||
|
'automatic uncertainty estimation',
|
||
|
epilog='Script written by {author} belonging to PyLoT version'
|
||
|
' {version}\n'.format(author=__author__,
|
||
|
version=__version__)
|
||
|
)
|
||
|
|
||
|
parser.add_argument(
|
||
|
'dbroot', type=str, help='specifies the root directory (in '
|
||
|
'most cases PILOT database folder)'
|
||
|
)
|
||
|
parser.add_argument(
|
||
|
'--output', '-o', type=str, help='path to the output directory', dest='output'
|
||
|
)
|
||
|
parser.add_argument(
|
||
|
'--parameterfile', '-p', type=str, help='full path to the parameterfile', dest='parfile'
|
||
|
)
|
||
|
|
||
|
args = parser.parse_args()
|
||
|
reassess_pilot_db(args.dbroot, args.output, args.parfile)
|