4 |
|
import re |
5 |
|
from array import * |
6 |
|
from decimal import * |
7 |
< |
import argparse |
7 |
> |
from optparse import OptionParser |
8 |
|
from OSUT3Analysis.Configuration.configurationOptions import * |
9 |
|
from OSUT3Analysis.Configuration.processingUtilities import * |
10 |
|
|
11 |
< |
parser = argparse.ArgumentParser() |
11 |
> |
parser = OptionParser() |
12 |
|
parser = set_commandline_arguments(parser) |
13 |
< |
|
14 |
< |
arguments = parser.parse_args() |
13 |
> |
(arguments, args) = parser.parse_args() |
14 |
|
|
15 |
|
if arguments.localConfig: |
16 |
|
sys.path.append(os.getcwd()) |