awips2/cave/com.raytheon.viz.gfe/scriptTemplates/extendSmartInit.vm
2022-05-05 12:34:50 -05:00

26 lines
No EOL
945 B
Text

# ----------------------------------------------------------------------------
# This software is in the public domain, furnished "as is", without technical
# support, and with no warranty, express or implied, as to its usefulness for
# any purpose.
#
# $itemName
#
# Author: $author
# ----------------------------------------------------------------------------
from ${baseClass} import *
# ----------------------------------------------------------------------------
# Please see the Configuration Guides->Smart Initialization Configuration->
# Modifying an Existing Algorithm section of the GFE Online Help for guidance
# on extending an existing smart init
# ----------------------------------------------------------------------------
class ${subClass}Forecaster(Forecaster):
def __init__(self):
${baseClass}Forecaster.__init__(self)
# def calc???(self, ???):
# pass
def main():
${subClass}Forecaster().run()