pymtt
 All Classes Namespaces Files Functions Variables Groups
LauncherMTTTool.py
Go to the documentation of this file.
1 #!/usr/bin/env python
2 #
3 # Copyright (c) 2015-2018 Intel, Inc. All rights reserved.
4 # $COPYRIGHT$
5 #
6 # Additional copyrights may follow
7 #
8 # $HEADER$
9 #
10 
11 from __future__ import print_function
12 from yapsy.IPlugin import IPlugin
13 
14 ## @addtogroup Tools
15 # @{
16 # @addtogroup Launcher
17 # Tools for launching HPC jobs
18 # @}
19 class LauncherMTTTool(IPlugin):
20  def __init__(self):
21  # initialise parent class
22  IPlugin.__init__(self)
23 
24  def print_name(self):
25  print("Launcher")
26