Salome HOME
Improvement and extension of EnKF algorithm (EnKS)
[modules/adao.git] / src / daComposant / daCore / AssimilationStudy.py
index 5ad888eff910e5449e95c5dbc96ba6d51bd67446..910e5fd4b7825e67170712f85c5c0221ecc5307a 100644 (file)
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2008-2017 EDF R&D
+# Copyright (C) 2008-2021 EDF R&D
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Lesser General Public
 # Author: Jean-Philippe Argaud, jean-philippe.argaud@edf.fr, EDF R&D
 
 """
-    Normalized interface for ADAO
+    Normalized interface for ADAO scripting (full version API)
 """
 __author__ = "Jean-Philippe ARGAUD"
 __all__ = ["AssimilationStudy"]
 
-from daCore.Aidsm import Aidsm
+from daCore.Aidsm import Aidsm as _Aidsm
 
 # ==============================================================================
-class AssimilationStudy(Aidsm):
+class AssimilationStudy(_Aidsm):
     """
     Generic ADAO TUI builder
     """
     def __init__(self, name = ""):
-        Aidsm.__init__(self, name)
+        _Aidsm.__init__(self, name)
 
 # ==============================================================================
 if __name__ == "__main__":
-    print('\n AUTODIAGNOSTIC \n')
+    print('\n AUTODIAGNOSTIC\n')