Skip to content
Snippets Groups Projects
Commit 335c3ec8 authored by Peters, Wouter's avatar Peters, Wouter
Browse files

using the EnsembleSmootherPipeline instead of Main for clarity in naming scheme

parent 55840148
No related branches found
No related tags found
No related merge requests found
......@@ -19,13 +19,12 @@ import os
dummy = sys.path.append(os.getcwd())
#################################################################################################
# Next, import the tools needed to initialize a data assimilation cycle, as well as the pipeline (Main())
# Next, import the tools needed to initialize a data assimilation cycle
#################################################################################################
from da.tools.initexit import StartLogger
from da.tools.initexit import ValidateOptsArgs
from da.tools.initexit import ParseOptions
from da.tools.pipeline import Main
#################################################################################################
# Parse and validate the command line options, start logging
......@@ -47,6 +46,7 @@ DaCycle = CycleControl(opts,args)
### IMPORT THE APPLICATION SPECIFIC MODULES HERE, TO BE PASSED INTO THE MAIN PIPELINE!!! ##
###########################################################################################
from da.tools.pipeline import EnsembleSmootherPipeline
from da.platform.maunaloa import MaunaloaPlatForm
from da.ct.dasystem import CtDaSystem
from da.ct.statevector import CtStateVector
......@@ -70,7 +70,7 @@ print "\n *******************************************************************
print " *************************************** Entering Pipeline ******************************************"
print " ********************************************************************************************************\n"
Main(DaCycle,PlatForm, DaSystem, Samples,StateVector,ObsOperator,Optimizer)
EnsembleSmootherPipeline(DaCycle,PlatForm, DaSystem, Samples,StateVector,ObsOperator,Optimizer)
##########################################################################################
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment