Commit 53f1298e authored by Georgios Dagkakis's avatar Georgios Dagkakis

patch to run gui locally in windows

parent a3ad96f5
...@@ -142,6 +142,12 @@ def _runSimulation(parameter_dict): ...@@ -142,6 +142,12 @@ def _runSimulation(parameter_dict):
def getGUIInstance(): def getGUIInstance():
# XXX do not instanciate each time! # XXX do not instanciate each time!
parser = argparse.ArgumentParser(description='Launch the DREAM simulation platform.')
parser.add_argument('gui_class', metavar='GUI_KLASS', nargs="?", default="Default",
help='The GUI klass to launch')
arguments = parser.parse_args()
global klass_name
klass_name = 'dream.simulation.GUI.%s' % arguments.gui_class
klass = __import__(klass_name, globals(), {}, klass_name) klass = __import__(klass_name, globals(), {}, klass_name)
instance = klass.Simulation(logger=app.logger) instance = klass.Simulation(logger=app.logger)
return instance return instance
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment